Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I undeploy a meteor application?

Tags:

meteor

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

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

like image 922
tommi Avatar asked May 21 '12 13:05

tommi


People also ask

How do I start meteor app?

Creating your first appOpen your web browser and go to http://localhost:3000 to see the app running. You can play around with this default app for a bit before we continue. For example, try editing the text in <h1> inside client/main. html using your favorite text editor.


2 Answers

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 
like image 121
Sheesh Mohsin Avatar answered Sep 20 '22 18:09

Sheesh Mohsin


From the Documentation:

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

like image 44
Tamara Wijsman Avatar answered Sep 20 '22 18:09

Tamara Wijsman