# Install services brew update brew install ruby memcached beanstalkd mysql redis phantomjs node brew services start memcached brew services start beanstalkd brew services start mysql brew services start redis # Install Docker brew tap caskroom/cask brew cask install virtualbox brew install docker docker-machine docker-compose docker-machine create --driver virtualbox default echo "eval \$(docker-machine env default)" >> ~/.bash_profile ( cd ~/Library/LaunchAgents curl -L https://git.io/vKh4l > com.docker.machine.default.plist launchctl load com.docker.machine.default.plist ) # Configure Path echo "export PATH=\".git/safe/../../bin:.git/safe/../../vendor/bundle/bin:.git/safe/../../.bundle/bundle/bin:\$PATH\"" >> ~/.bash_profile # Install Invoker gem install invoker --no-ri --no-rdoc && sudo invoker setup # Check out repository mkdir -p ~/Code cd ~/Code git clone https://github.com/17hats/17hats cd 17hats # Install application dependecies to 17hats directory bin/setup # Test everything is working rake