Tabelle nun korrekt
This commit is contained in:
parent
2c0b0099d0
commit
7beae4cdfd
Binary file not shown.
|
|
@ -16,36 +16,31 @@ import os
|
||||||
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
|
||||||
|
|
||||||
|
############################################## DEV #####################################
|
||||||
############################################## LOCAL #####################################
|
BASE_URL = "https://dev01.digitale-agentur.com/"
|
||||||
BASE_URL = "http://localhost:8000/"
|
|
||||||
CRONAPIKEY = "gCddsaz6NOnE9QbXZM5LasdEk122D"
|
CRONAPIKEY = "gCddsaz6NOnE9QbXZM5LasdEk122D"
|
||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
|
||||||
# Database
|
# MAIL DEV
|
||||||
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
|
EMAIL_HOST = 'smtp.strato.de'
|
||||||
|
EMAIL_PORT = 587
|
||||||
|
EMAIL_USE_TLS = True
|
||||||
|
EMAIL_HOST_USER = "support@dev01.digitale-agentur.com"
|
||||||
|
EMAIL_HOST_PASSWORD = "support@dev01.digitale-agentur.com"
|
||||||
|
DEFAULT_FROM_EMAIL = "support@dev01.digitale-agentur.com"
|
||||||
|
|
||||||
# DEV
|
# DEV
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.mysql',
|
'ENGINE': 'django.db.backends.mysql',
|
||||||
'NAME' : 'digitaleagentur',
|
'NAME' : 'digitaleagentur_dev01',
|
||||||
'USER' : 'root',
|
'USER' : 'digitaleagentur_dev01',
|
||||||
'PASSWORD' : '',
|
'PASSWORD' : 't3TvtGAOkFHYXdJlUMIu9u3U',
|
||||||
'PORT' : 3306
|
'PORT' : 3306
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
############################################## DEV #####################################
|
||||||
# MAIL DEV
|
|
||||||
EMAIL_HOST = 'gymhum.de'
|
|
||||||
EMAIL_PORT = 587
|
|
||||||
EMAIL_USE_TLS = True
|
|
||||||
EMAIL_HOST_USER = "holger.trampe"
|
|
||||||
EMAIL_HOST_PASSWORD = "Motte2016_!"
|
|
||||||
DEFAULT_FROM_EMAIL = "holger.trampe@gymhum.de"
|
|
||||||
|
|
||||||
################################################### LOCAL ###############################
|
|
||||||
|
|
||||||
|
|
||||||
# Nach zehn Stunden läuft der Cookie ab!
|
# Nach zehn Stunden läuft der Cookie ab!
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue