From bd857b234686a6de65b7ed82239bde9a5c5c34b6 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Thu, 21 Jul 2022 13:47:49 +0100 Subject: [PATCH] Add more notes about local settings --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b8776f6..aad0186 100644 --- a/README.md +++ b/README.md @@ -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