Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ npm install
Install and start Postgres:

```sh
brew install postgres
brew install postgresql
brew services start postgresql
```

Create a database:

```sh
psql postgres -c "CREATE DATABASE gitwit;"
# psql postgres -U postgres -c "CREATE DATABASE gitwit;"
# psql postgres -U postgres -c "CREATE DATABASE gitwit;" # Use this if the above fails
```

Initialize the database schema:
Initialize the database schema (run from project directory):

```
npm run db:generate
Expand Down