1

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 ?

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
DEV
  • 949
  • 1
  • 9
  • 29
  • Cloud Storage and Cloud Firestore are different products that solve different problems, and you should use them each to address the specific needs of your app where they are best suited. – Doug Stevenson Aug 06 '19 at 18:10

2 Answers2

1

Simple Answer. YES you can!

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

M.Ali
  • 8,815
  • 5
  • 24
  • 42
1

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.

Alex Mamo
  • 130,605
  • 17
  • 163
  • 193