Last active
June 1, 2016 09:45
-
-
Save nmrshll/87b3fa8964561121164ff17e7b2acd43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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