Reputation: 65870
Could you tell me how can I maintain a test db with firestore? Few more points about the current implementation of my app.Now I have production DB with ionic 3 app.
I have 1 production db
I use native fb and g+ logins. So I need to create native apps on firebase console.
Questions:
Do I need to create a separate project on firebase console to create new test db?
If yes then do I need to maintain 2 code bases? That is due to native logins.i.e. I need to add google-services.json
and googleservice-info.plist
Upvotes: 2
Views: 2741
Reputation: 598797
You'll indeed need to create separate projects for the test and production environments. But you won't need separate code bases. Have a look at the documentation on how to set up a single code project for multiple Firebase projects.
Upvotes: 3