How do I undeploy a meteor application?

Meteor

Meteor Problem Overview


I've deployed an application with: meteor deploy a-meteor-app.meteor.com.

Is there a way for me to undeploy from meteor.com?

Meteor Solutions


Solution 1 - Meteor

Suppose I have deployed an app on the url :- http://anotherajax.meteor.com/ .

Then, to remove this deployed app, Run this Command:-

meteor deploy --delete anotherajax.meteor.com

Solution 2 - Meteor

From the Documentation:

> To delete an application you've deployed, specify the --delete option along with the site.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiontommiView Question on Stackoverflow
Solution 1 - MeteorSheesh MohsinView Answer on Stackoverflow
Solution 2 - MeteorTamara WijsmanView Answer on Stackoverflow