We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d476dc5 commit 9655c72Copy full SHA for 9655c72
1 file changed
egsim/settings/prod.py
@@ -5,7 +5,7 @@
5
As convention, you may rename the production file `settings.py`
6
"""
7
8
-from egsim.settings.base import *
+from egsim.settings.base import * # Note: you also import pathlib.Path automatically
9
10
DEBUG = False # DO NOT CHANGE THIS IN PRODUCTION!
11
@@ -23,7 +23,7 @@
23
# python -c "from django.core.management.utils import get_random_secret_key;print(get_random_secret_key())" # noqa
24
SECRET_KEY: str
25
26
-# path to the sqlite database (can be placed next to MEDIA_ROOT, see below)
+# path to the sqlite database (you may place it next to MEDIA_ROOT)
27
DATABASES['default']['NAME']: str
28
29
# media root (path on the server):
0 commit comments