Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a new Meteor project in an existing directory?

Tags:

meteor

There is already a git repository in the directory. I see only

meteor create

command which creates a new directory.

like image 731
Misha Avatar asked Jun 22 '13 14:06

Misha


2 Answers

$ meteor create .

I started with a git repo that had a README.md file in there. The above command worked like a charm.

I'm running Meteor 1.2.0.2.

like image 64
Gaurav Avatar answered Sep 23 '22 07:09

Gaurav


If you're just trying to create a new Meteor project, rename the original directory, run meteor create, merge the two directories, then run git add .; git commit -a;

If you want to pull Meteor from GitHub, just add it as a git submodule.

like image 7
whichdan Avatar answered Sep 21 '22 07:09

whichdan