Reputation: 13185
After cloning an existing yeoman project in a new computer, how to build and run the project?
Upvotes: 1
Views: 919
Reputation: 13185
To use an existing yeoman project:
For the first time:
PATH
)npm install -g yo bower grunt-cli
PATH
)gem source -r http://rubygems.org
(if SSL error)gem install compass
Then:
npm install
bower install
Finally
grunt serve
to launch the webappUpvotes: 2