Ayrix
Ayrix

Reputation: 501

Which alternative to "Firebase Storage" could I use for my Flutter App?

I'm developing an app with Flutter and I need a lot of database storage to store my data (images and videos).

Currently I'm using Firebase for:
"User Authentication, Firestore Database, Dynamic Links, Storage and so on"

The pricing for the storage (GB stored) itself is ok for me but Firebase also charges for GB Transfered and Operations(uploads & downloads) which can get expensive as you can see in the snapshot below:

Firebase Pricing Calculator

I am actually looking for an alternative to Firebase Storage which does not charge for Data transfer of Operations (at least sth. which is not that expensive).

Does anyone know which cloud storage I could use instead and also how to migrate in my flutter app?

I'm also open to use a own server running on a VPS but I have no clue how I would establish a connection to the own server in order to be able to up- and download media files.

Please provide a tutorial/instructions how to build your own server and connect with flutter app since I'm interested on anyway.

Upvotes: 1

Views: 3213

Answers (1)

Gwhyyy
Gwhyyy

Reputation: 9196

I would recommend using Supabase, it's a Firebase alternative and it's open source, supports Flutter/Dart and supports the storage service.

Check it from here Supabase storage

you could configure it and use it with your own hosting, and it will cost you only the price of hosting it on some cloud service, where you will store your files.

Upvotes: 0

Related Questions