Skip to content

Instantly share code, notes, and snippets.

@featherart
Created February 4, 2020 07:32
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 featherart/61e8c1a9328c3c9186ae783a99d17931 to your computer and use it in GitHub Desktop.
Save featherart/61e8c1a9328c3c9186ae783a99d17931 to your computer and use it in GitHub Desktop.
install postgres
# To install postgres
brew update
brew install postgres
# To create new user (necessary step before you can create a database):
createuser -d postgres
# To start up postgres:
brew services start postgresql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment