summaryrefslogtreecommitdiff
path: root/DEVELOP.md
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-07-07 09:39:29 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-10-25 12:06:02 +0200
commit62823edbc5cb453869f5a07f690658580ed8df71 (patch)
tree52fd5556d11e905b775dc8e4cf8bf7b41c88b8ee /DEVELOP.md
parent2d0512c72b2a8feb6fa10c3cd8b8c53bc74a9ba6 (diff)
downloadIshtar-62823edbc5cb453869f5a07f690658580ed8df71.tar.bz2
Ishtar-62823edbc5cb453869f5a07f690658580ed8df71.zip
Preventive file - inline forms
Diffstat (limited to 'DEVELOP.md')
-rw-r--r--DEVELOP.md7
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