Skip to content

Instantly share code, notes, and snippets.

@nmrshll
Last active June 1, 2016 09:45
Show Gist options
  • Save nmrshll/87b3fa8964561121164ff17e7b2acd43 to your computer and use it in GitHub Desktop.
Save nmrshll/87b3fa8964561121164ff17e7b2acd43 to your computer and use it in GitHub Desktop.
#!/bin/sh
echo "Installing XCode CLT..."
xcode-select --install
read -p "Press [Enter] key to once CLT finished..."
clear
echo "Creating dev environment..."
mkdir ~/dev
mkdir ~/dev/go
clear
echo "Installing Homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
clear
echo "Installing basic stuff..."
brew install gpg ruby python python3 git zsh wget
clear
echo "Installing Cask..."
brew tap caskroom/cask
clear
echo "Installing Cask applications..."
brew cask install alfred iterm2 ngrok cyberduck google-chrome vagrant visual-studio-code
brew cask install caskroom/versions/sublime-text3
brew cask install virtualbox
brew cask install vagrant
brew cask install vagrant-manager
brew install docker
brew install boot2docker
brew install docker-compose
brew install go --cross-compile-common
clear
echo "Installing RVM..."
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
\curl -sSL https://get.rvm.io | bash -s stable
clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment