Reputation: 169
How can I create a copy of my entire local meteor application? I was expecting a command like "meteor clone myapp" but couldn't find any documentation and simply copying the folder doesn't work.
Upvotes: 0
Views: 1500
Reputation: 330
In windows, you can copy and paste the entire project directory and go into .meteor/local directory and delete everything in that directory except the db directory. Then start the meteor server on the new project directory, with everything deleted in the .meteor/local directory, meteor will rebuild the project without altering the logic of your application.
Upvotes: 0
Reputation: 1650
You could use git to clone the whole thing.
If you aren't familiar with git see this reference. http://gitref.org/creating/
Upvotes: 1