diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-07-07 09:39:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-07-29 11:56:34 +0200 |
commit | 577438f9ea0f25f5596aa1bb8e262d3c5a30173f (patch) | |
tree | aa302d408e0d9c7bf9c64a28c8bc9da03e784be9 /DEVELOP.md | |
parent | d552436e1847fc7541d1abe643c5fed67109bae6 (diff) | |
download | Ishtar-577438f9ea0f25f5596aa1bb8e262d3c5a30173f.tar.bz2 Ishtar-577438f9ea0f25f5596aa1bb8e262d3c5a30173f.zip |
Preventive file - inline forms
Diffstat (limited to 'DEVELOP.md')
-rw-r--r-- | DEVELOP.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/DEVELOP.md b/DEVELOP.md index e91ca3ccf..2c9c6aaf3 100644 --- a/DEVELOP.md +++ b/DEVELOP.md @@ -42,10 +42,12 @@ cd ishtar ISHTAR_PATH=`pwd` cp example_project/local_settings.py.sample example_project/local_settings.py editor example_project/local_settings.py -# edit settings: SECRET_KEY, DATABASE +# edit settings: SECRET_KEY, DATABASE, comment STATIC_URL and MEDIA_URL ``` ``` python +SECRET_KEY = "change-this-secret" + DATABASES = { 'default': { 'NAME': 'ishtar', @@ -56,6 +58,9 @@ DATABASES = { 'PASSWORD': 'mypassword', }, } + +# STATIC_URL = BASE_URL + 'static/' +# MEDIA_URL = BASE_URL + 'mydomain/media/' ``` ``` bash |