0

I am faced a problem. I have a project which is in firebase. I have used there firebase Authenticate, Firebase realtime database, Firebase function and some more. Now I have changed my decision. I want to make my own server where I will set up and manage everything. So that I want to backup my project to move all data to other framework like spring boot project.

In this situation how can I get the whole project? User Auth data, Firebase Realtime database, Firestore etc.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
RmTomal
  • 70
  • 1
  • 7

1 Answers1

2

You'll have to write code or use the CLI to query all of the data you want, and write it to a place you want. Firebase does not provide a tool to do all this automatically for an entire project. You will need to deal with each product's data separately.

You can use the Firebase Admin SDK or the Firebase CLI to access data from the products you listed.

See also:

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
  • This is a big problem for the user. I think google clouds need to fix it – RmTomal Jun 01 '23 at 18:39
  • 2
    You're certainly welcome to send your feedback to [Firebase support](https://support.google.com/firebase/contact/support). Stack Overflow can't help you with this any more than what you see here, given that this is a community-supported site not run by Google. – Doug Stevenson Jun 01 '23 at 18:56