Create an empty env file

This avoids users seeing `UserWarning`s about it and getting confused
pull/399/head
Jake Howard 2023-02-16 10:11:16 +00:00 zatwierdzone przez Matt Westcott
rodzic 8fc1330056
commit 66aa55551b
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -154,6 +154,7 @@ Next, we'll set up our local environment variables. We use [django-dotenv](https
to help with this. It reads environment variables located in a file name `.env` in the top level directory of the project. The only variable we need to start is `DJANGO_SETTINGS_MODULE`:
cp bakerydemo/settings/local.py.example bakerydemo/settings/local.py
touch .env
To set up your database and load initial data, run the following commands: