Created
October 11, 2013 10:11
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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