Skip to content

Instantly share code, notes, and snippets.

@allfake
Created October 11, 2013 10:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save allfake/6932459 to your computer and use it in GitHub Desktop.
Save allfake/6932459 to your computer and use it in GitHub Desktop.
Setup to use angular with grunt node ruby (not support oh my zsh and others)
install xcode from appstore for easy install command line
install command line at xcode
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
sudo mkdir /usr/local/Cellar
sudo chown -R `whoami` /usr/local
echo 'export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"' >> ~/.bash_profile
brew doctor --verbose
\curl -L https://get.rvm.io | bash -s stable --ruby
gem sources -a http://production.cf.rubygems.org/
gem update --system
gem install compass
brew install node
npm install -g bower
npm install -g grunt-cli
npm install -g yo
npm install -g generator-webapp
npm install -g generator-angular
finish :)
create app
yo angular
run
grunt server
build
grunt build
grunt build -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment