Skip to content

Instantly share code, notes, and snippets.

@8bitDesigner
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 8bitDesigner/a1f79a1c29f146a4b135 to your computer and use it in GitHub Desktop.
Save 8bitDesigner/a1f79a1c29f146a4b135 to your computer and use it in GitHub Desktop.
Instructions on what's needed on a new dev box
#### 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