Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jason-shen/d6af0e8a7ec67a8141aea26c12b4f570 to your computer and use it in GitHub Desktop.
Save jason-shen/d6af0e8a7ec67a8141aea26c12b4f570 to your computer and use it in GitHub Desktop.
Install Elixir and Phoenix on macOS
# Update brew
brew update
# Need postgres
brew install postgresql
# Install elixir
brew install elixir
# Install hex package manager
mix local.hex
# Start postgres
brew services start postgresql
# Optional install default postgres user
createuser -d postgres
# Install phoenix
mix archive.install https://github.com/phoenixframework/archives/raw/master/phoenix_new.ez
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment