Solved: How to remotely `meteor reset` for myapp.meteor.com?

To reset locally the database I can run meteor reset.

But can I do same thing for the deployed on meteor.com ?

Is it possible to do from terminal?

Thanks.

Just published a couple of packages on this, actually.

starrynight:dropdatabase
starrynight:autodrop

Thanks.
How should I use them to reset the database of the app on meteor.com ?

I found solution from Stack Overdlow. This is what I wanted.

meteor mongo APP.meteor.com
> db.dropDatabase()

Reference http://stackoverflow.com/a/26620846/1745902