I am about to release my first app using firebase RDB and once the app goes live I would still like to have access to a database that I can mess with for testing purposes.
Should I create a new database instance and then just modify the config object?
let config = {
apiKey: "apiKey",
authDomain: "newDatabase.firebaseapp.com",
databaseURL: "https://newDatabase.firebaseio.com",
projectId: "newDatabase",
storageBucket: "newDatabase",
messagingSenderId: "123456789"
}
Would this the right way to create a development database?