Skip to content

Commit

Permalink
Add additional database steps for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Mar 27, 2024
1 parent d8014c7 commit 5cf0f2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ This is an example of how to list things you need to use the software and how to
```
```sh
postgres=# CREATE DATABASE "djangonaut-space";
CREATE DATABASE
postgres=# CREATE USER djangonaut WITH SUPERUSER PASSWORD 'djangonaut';
postgres=# GRANT ALL PRIVILEGES ON DATABASE 'djangonaut-space' TO djangonaut;
```
```sh
postgres=# exit
Expand Down

0 comments on commit 5cf0f2f

Please sign in to comment.