Created
February 4, 2020 07:32
-
-
Save featherart/61e8c1a9328c3c9186ae783a99d17931 to your computer and use it in GitHub Desktop.
install postgres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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