mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 18:12:20 +01:00
23 lines
489 B
Plaintext
23 lines
489 B
Plaintext
from .base import *
|
|
|
|
SECRET_KEY = '******'
|
|
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = ['marietje-zuid.nl']
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'marietje',
|
|
'USER': 'marietje',
|
|
'PASSWORD': '******',
|
|
'HOST': 'localhost',
|
|
'PORT': '3306',
|
|
'OPTIONS': {'init_command': "SET sql_mode='STRICT_TRANS_TABLES'"},
|
|
}
|
|
}
|
|
|
|
BASE_URL = 'https://marietje-zuid.science.ru.nl'
|
|
|
|
BERTHA_HOST = ('bach.science.ru.nl', 1234) |