You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ brew install git
$ rbenv rehash
$ git --version # make sure the new version is in use
$ git config --global user.name "Your name"
$ git config --global user.email your_email@example.com
Don't have postgres? Install it
$ brew install postgresql # may need to chown /usr/local/var/postgres
$ initdb /usr/local/var/postgres -E utf8 # initialize your computer's postgres db
$ ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents # set postgres to run on computer startup
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist # start postgres now
Don't have java? Install it
$ brew install Caskroom/cask/java
Don't have elasticsearch? Install it
$ brew install elasticsearch
$ ln -sfv /usr/local/opt/elasticsearch/*.plist ~/Library/LaunchAgents # set elasticsearch to run on computer startup
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.elasticsearch.plist # start elasticsearch now