Last active
August 29, 2015 14:04
-
-
Save pedrofelipe/f61b6c6d3c08f4925b75 to your computer and use it in GitHub Desktop.
Setting up my environment (OS X)
This file contains hidden or 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
// set tomorrow night theme (terminal) | |
https://raw.githubusercontent.com/chriskempson/tomorrow-theme/master/OS%20X%20Terminal/Tomorrow%20Night.terminal | |
// install oh-my-zsh | |
curl -L http://install.ohmyz.sh | sh | |
// install homebrew | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew update | |
brew doctor | |
export PATH="/usr/local/bin:$PATH" | |
// install node.js | |
http://nodejs.org/dist/v0.10.30/node-v0.10.30.pkg | |
sudo npm update -g | |
// install yeoman, cordova/phonegap and ionic framework | |
sudo npm install -g yo cordova ionic | |
// install web app generator (bootstrap + sass) | |
sudo npm install -g generator-webapp | |
// install compass | |
gem uninstall sass | |
gem install sass --no-ri --no-rdoc | |
gem install compass --no-ri --no-rdoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment