Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
docs: Add steps to create user and run server
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Mar 30, 2021
1 parent c82187c commit 30fa20e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,19 @@ pre-commit install

Initialize the database:

```
```shell
createdb covid19_test
env DB_NAME=covid19_test ./manage.py migrate
```

Create a superuser:

```shell
env DB_NAME=covid19_test ./manage.py createsuperuser
```

Run a development server:

```shell
env DEBUG=True DB_NAME=covid19_test ./manage.py runserver
```

0 comments on commit 30fa20e

Please sign in to comment.