Add more notes about local settings

This commit is contained in:
Mark Veidemanis 2022-07-21 13:47:49 +01:00
parent 477baeec32
commit bd857b2346
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,12 @@ $ source env/bin/activate
(env) $ pip install -r requirements.txt
```
## Local settings
You'll need to copy the `app/local_settings.example.py` file to `app/local_settings.py`. The project won't start otherwise.
```
$ cp app/local_settings.example.py app/local_settings.py
```
## Running database migrations
Now we need to run the database migrations in order to get a working database.
```shell