Improve readme some more

This commit is contained in:
Kumi 2020-05-25 19:21:59 +02:00
parent 5e9d78b0e3
commit c2fe32e622

View file

@ -5,12 +5,14 @@ pairs in your database, so you can store configuation in your database easily.
## Quick start ## Quick start
1. Add "dbsettings" to your INSTALLED_APPS setting like this:: 1. Add "dbsettings" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ```python
... INSTALLED_APPS = [
...,
'dbsettings', 'dbsettings',
] ]
```
2. Run ``python manage.py makemigrations dbsettings`` and 2. Run ``python manage.py makemigrations dbsettings`` and
``python manage.py migrate dbsettings`` to create the polls models. ``python manage.py migrate dbsettings`` to create the polls models.