Skip to content

Instantly share code, notes, and snippets.

@bastman
Last active December 6, 2017 08:43
Show Gist options
  • Save bastman/dade2bdfa41e1275b7e34a17ce4c6862 to your computer and use it in GitHub Desktop.
Save bastman/dade2bdfa41e1275b7e34a17ce4c6862 to your computer and use it in GitHub Desktop.
setup-osx (developer tools)
# java latest (>=9)
$ brew cask info java
$ brew cask install java

# java specific version (e.g. java8)
$ brew tap caskroom/versions
$ brew cask search "java*"
$ brew cask install java8 # you may need to change JAVA_HOME afterwards


# gradle
$ brew install gradle

# docker
$ brew cask install docker-toolbox
$ docker --version
$ docker-compose --version

# ruby, bundler
$ brew install ruby
$ brew link --overwrite ruby
$ ruby --version
$ sudo gem install bundler

# python pip
$ sudo easy_install pip

# jq
$ brew install jq

# jmespath-terminal (python)
$ sudo pip install jmespath-terminal

# ghost
$ gem install ghost
$ ghost list

# capistrano
$ bundle install
$ bundle exec cap install
$ cap --version

# ansible
$ brew install ansible
$ ansible --version

# php composer
$ brew tap homebrew/php
$ brew install composer

# php drupal drush
$ brew tap homebrew/php
$ brew install drush


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment