Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleInstall Java
collapsetrue
# use homebrew to install Java
brew install java

# add Java to your PATH environmental variable, so your terminal knows where to find Java
echo 'export PATH="/Users/username/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc # if you are using zsh
echo 'export PATH="/Users/username/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc # if you are using bash

# you can test that it works with the following
java --version

PostgreSQL

You can install and run PostgreSQL without EP using homebrew.  You can read the documentation on that approach here: https://wiki.postgresql.org/wiki/Homebrew.  The code for that is below

Code Block
languagebash
titlePostgreSQL
collapsetrue
# using homebrew, install postgresql 
brew install postgresql

# run postgresql
brew services start postgresql


ElasticMQ

ElastiqMQ provides official instructions for a stand-alone installation, which you can find here: https://github.com/softwaremill/elasticmq#installation-stand-alone.  Below is the key code for that:

...