dynamicweb: added settings module with different files for each env
Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
180ad09fab
commit
aec2cd4298
5 changed files with 448 additions and 1 deletions
15
dynamicweb/settings/prod.py
Normal file
15
dynamicweb/settings/prod.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from .base import *
|
||||
|
||||
DEBUG = False
|
||||
|
||||
ADMINS = (
|
||||
('Nico Schottelius', 'nico.schottelius@ungleich.ch'),
|
||||
)
|
||||
# ('Sanghee Kim', 'sanghee.kim@ungleich.ch'),
|
||||
|
||||
MANAGERS = ADMINS
|
||||
|
||||
ALLOWED_HOSTS = [
|
||||
".ungleich.ch",
|
||||
"digital.glarus.ungleich.ch" ,
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue