Skip to content

Instantly share code, notes, and snippets.

@8bitDesigner
Created December 15, 2015 02:24
Show Gist options
  • Save 8bitDesigner/752d9bfa7fb963bdc254 to your computer and use it in GitHub Desktop.
Save 8bitDesigner/752d9bfa7fb963bdc254 to your computer and use it in GitHub Desktop.
#### 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