Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to delete Meteor app.. simply remove directory?

Tags:

meteor

quick question, I think. If I want to delete an app that I created with $> meteor create myapp; do I just remove the myapp directory?

thanks

like image 857
Jason Ip Avatar asked Dec 02 '13 15:12

Jason Ip


People also ask

Can I delete. Meteor folder?

Most of it is safe to delete when you want more disk space, with the one exception being the db folder. Most of the work done by meteor reset is deleting . meteor/local .


1 Answers

Yes, just remove the directory. Meteor stores everything in a .meteor folder under your app's directory.

EDIT: that's not entirely true, Meteor also has a local cache of packages you've installed (so it doesn't have to fetch them later). This usually goes to your home folder and works in much the same way as npm. But it's not necessary to delete this in order to remove the meteor application, they are unrelated.

like image 195
Milimetric Avatar answered Sep 28 '22 09:09

Milimetric