-
-
Save edymerchk/ee21c1fad801013538e7 to your computer and use it in GitHub Desktop.
Mac Installation
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
0. iTerm2 | |
`http://iterm2.com/` | |
1. Oh my ZSH | |
https://github.com/robbyrussell/oh-my-zsh | |
2. HomwBrew | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
3. Rbenv and ruby-build | |
brew install rbenv ruby-build | |
4. Add rbenv to profiles | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.profile | |
echo 'eval "$(rbenv init -)"' >> ~/.profile | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc | |
echo 'eval "$(rbenv init -)"' >> ~/.zshrc | |
5. Install ruby | |
rbenv install 1.9.3-p374 | |
6. Sublime text | |
http://www.sublimetext.com/3 | |
7. Postgres | |
brew install postgres | |
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist | |
8. Node | |
brew install node | |
9. Redis | |
brew install redis | |
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment