Meteor app — resetting a deployed app's DB
meteor, mongodb
Solution
If you have your app with you you could do this in your project directory
meteor deploy test.meteor.com --delete
meteor deploy test.meteor.com
The first deletes the app so its all blank. The second deploys a fresh instance of it back.
Problem
Is there a simple way to reset the data from a meteor deployed app? So, for example, if I had deployed an app named `test.meteor.com` — how could I easily reset the data that has been collected by that app? Locally I run `meteor reset`, but I am unsure of what to do in production.