How to remove all data from a Firebase database?
A simple way to remove all data from a firebase database is to use the Firebase CLI.
Once the CLI is setted up you just need to use this command and your data will be removed :
firebase database:remove /
You can manually create a JSON file that contains a single empty entry and import it, which will remove all existing entries.