DEV
DEV

Reputation: 949

can we use both Cloud Storage and Cloud Firestore databases for a single project?

I would like to use the firestore for my actual data and firebase storage for storing the images.

Can i use firbese and firestore for the same project ?

Upvotes: 1

Views: 667

Answers (2)

Alex Mamo
Alex Mamo

Reputation: 138824

As @M.Ali mentioned in answer, yes you can use both services in a single project. As an addition, I would like to say that we use Cloud Firestore and Firebase Storage together, in the moment when we need to keep a reference of a file for a later use. For instance, let's say you want to add a .PDF file with some recommendations in Firebase Storage. Once you have successfully add it, you can then simply add that url to Firestore.

Upvotes: 1

M.Ali
M.Ali

Reputation: 10235

Simple Answer. YES you can!

Most apps use Firestore for realtime database and Storage for storing images, audios, and any large files

Upvotes: 1

Related Questions