0

I have created my first app on Firebase and I would like to download it. How do I do it?

1 Answers1

2

Firebase is a platform for building realtime web applications. A "Firebase" is a realtime database that is hosted in the cloud. When you create a new "app" in the account dashboard that is essentially creating a cloud hosted Firebase. With this new Firebase and it's data URL you can use that to act as your application's backend. This URL is usually looks something like this: https://myapp.firebaseio.com/.

You use the URL as an API to store data into your Firebase. Every time data is updated Firebase will stream out the changes to the data in realtime.

So, the only thing to download in your Firebase is the data.

David East
  • 31,526
  • 6
  • 67
  • 82
  • 1
    Your project contains a lot of files, info, and libraries. I accidentally broke few thing in the local version of my project and now I want to sync it with web version to get my latest working version back but I have no idea how to do that so here I am. Any ideas? – Telion Nov 25 '17 at 09:22
  • See https://stackoverflow.com/questions/26286339/pull-lost-code-from-firebase-hosting-deployment – Dom Jan 02 '23 at 19:09