Developer Machine Setup
-----------------------------
### Mac OS X ###
1. Download and set up Docker Toolbox
1. Follow the instructions at http://docs.docker.com/installation/mac/
2. Start a new docker host
`docker-machine create -d virtualbox dev`
2. Get the IP address of your docker host
`docker-machine ip dev`
3. Add a line to your /etc/hosts that goes `<Docker IP> dockerhost`
4. Run `docker-machine env dev` and copy the export statements to your ~/.bash_profile
2. Download Go 1.5.1 and Node.js using Homebrew
1. Download Homebrew from http://brew.sh/
2. `brew install go`
3. `brew install node`
3. Set up your Go workspace
1. `mkdir ~/go`
2. Add the following to your ~/.bash_profile
This file has been truncated. show original