Created
December 15, 2015 02:24
-
-
Save 8bitDesigner/752d9bfa7fb963bdc254 to your computer and use it in GitHub Desktop.
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
#### Things that need a GUI to install... | |
# "Command Line Tools (OS X 10.10) for Xcode 6.4" | |
# https://developer.apple.com/downloads/ | |
#### Things that can be installed from the terminal | |
# Install Homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install RVM | |
curl -sSL https://get.rvm.io | bash | |
# Install Pow | |
curl get.pow.cx | sh | |
# Get readline support | |
brew install readline && brew link readline | |
brew install git imagemagick node | |
# Exposes `brew services` for loading/unloading services we're going to install | |
brew tap homebrew/services | |
# Need redis for everything | |
brew install redis | |
brew services start redis | |
# Ditto for postgres | |
brew install postgres | |
brew services start postgres | |
# Memcache is used by Hampton developers | |
brew install memcached | |
brew services start memcached |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment