Skip to content

Commit

Permalink
Clarify readme
Browse files Browse the repository at this point in the history
  • Loading branch information
prplnorangesoda committed Jul 29, 2024
1 parent f362e0e commit e75c13e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions DB.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ Remember to set your PG\_\_HOST in .env to `db`.
To initiate the database:

1. createuser -P user
`CREATE USER user WITH PASSWORD 'password';`
SQL: `CREATE USER user WITH PASSWORD 'password';`
Create a user (optional)

2. createdb -O user db
`CREATE DATABASE db OWNER user;`
2. createdb -O user db

SQL: `CREATE DATABASE db OWNER user;`
Create a database

3. Initialize the database
Expand Down

0 comments on commit e75c13e

Please sign in to comment.