Skip to content

Instantly share code, notes, and snippets.

@yiannistri
Last active June 20, 2018 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yiannistri/bafe7fcece7ddef2cb1ec84d833c9e21 to your computer and use it in GitHub Desktop.
Save yiannistri/bafe7fcece7ddef2cb1ec84d833c9e21 to your computer and use it in GitHub Desktop.
Local dev setup
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
brew update
brew upgrade
brew install zsh zsh-completions
brew cask install gas-mask
brew cask install aws-vault
brew cask install virtualbox
brew cask install minikube
brew install kubectl
brew install kubernetes-helm
PACKAGES=(
git
vim
)
echo "Installing packages..."
brew install ${PACKAGES[@]}
CASKS=(
iterm2
macvim
minikube
skype
slack
spectacle
virtualbox
)
echo "Installing cask apps..."
brew cask install ${CASKS[@]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment