12 lines
177 B
Python
12 lines
177 B
Python
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = [
|
|
".ungleich.ch"
|
|
]
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'app',
|
|
}
|
|
}
|