Skip to content

Commit

Permalink
chore: updated mac-os environment setup for postgres (#459)
Browse files Browse the repository at this point in the history
- fixed postgres macOS setup instruction
  • Loading branch information
nprajilesh committed Oct 30, 2023
1 parent dd28c37 commit 2fe82e1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/contributing-guide/environment-setup/mac-os.md
Expand Up @@ -86,12 +86,16 @@ or

```bash
brew install postgresql
# Ensure Postgres is started
brew services start postgresql
# create user postgres
createuser postgres
```

The installation procedure created a user account called postgres that is associated with the default Postgres role. In order to use Postgres, you can log into that account.

```bash
sudo -u postgres psql
sudo psql -U postgres
```

### Install redis-server
Expand Down

0 comments on commit 2fe82e1

Please sign in to comment.