I've got a test Azure Ubuntu server that I'm testing deployments on.
I've created a number of instances of my Meteor app using Meteor Up.
I would like to remove them from the server.
Does Meteor up have some sort of "mup remove" command?
Sadly no, Meteor-up does not provide any automated way to clean up after itself. Basically you'd have to follow these steps, on your server:
sudo service yourApp stop
. If not, your app will still be running even after deletionsudo rm -rf /opt/yourApp
sudo rm /etc/init/yourApp.cfg
Also, if you used an external database, don't forget to clean it up using the mongo client:
> use yourDatabase
> db.dropDatabase()