Last active
May 22, 2019 17:35
-
-
Save jpotts18/13aac40997f97df594fe1cfa82fe6c35 to your computer and use it in GitHub Desktop.
This file contains 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
# install brew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
brew install hub | |
# install brew cask | |
brew tap caskroom/cask | |
# Applications | |
brew cask install google-chrome | |
brew cask install shiftit | |
# Communication | |
brew cask install slack | |
brew cask install skype | |
brew cask install skitch | |
brew cask install harvest | |
brew cask install spotify | |
# developer applications | |
brew cask install iterm2 | |
brew cask install visual-studio-code | |
brew cask install mysqlworkbench | |
# nodejs | |
# Install NVM | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash | |
nvm install <version> | |
npm install -g npm | |
npm install -g yarn | |
# java | |
brew cask install homebrew/cask-versions/java8 | |
# python | |
brew install python | |
brew install pipenv | |
# ruby | |
curl -sSL https://get.rvm.io | bash -s stable | |
# Golang | |
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) | |
# data stores | |
brew install mysql | |
brew install postgresql | |
brew install redis | |
brew install elasticsearch | |
brew install rabbitmq | |
# brew install apm-server | |
brew install kibana | |
# utilities | |
brew install jsonpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment