DEV FÜR 0.9.0
This commit is contained in:
parent
4c162adb55
commit
d3b2c79d9f
Binary file not shown.
|
|
@ -14,32 +14,32 @@ import os
|
||||||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||||||
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 #####################################
|
############################################## PROD #####################################
|
||||||
BASE_URL = "https://dev01.digitale-agentur.com/"
|
BASE_URL = "https://digitale-agentur.com/"
|
||||||
CRONAPIKEY = "gCddsaz6NOnE9QbXZM5LasdEk122D"
|
CRONAPIKEY = "gCddsaz6NOnE9QbXZM5LasdEk122D"
|
||||||
MAILINFOKEY = "jka7sd8iukashdna78skduJAHDsu6dilaksdjba65a68iadbhjak"
|
MAILINFOKEY = "jka7sd8iukashdna78skduJAHDsu6dilaksdjba65a68iadbhjak"
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
|
||||||
# MAIL DEV
|
# MAIL PROD
|
||||||
EMAIL_HOST = 'smtp.strato.de'
|
EMAIL_HOST = 'smtp.strato.de'
|
||||||
EMAIL_PORT = 587
|
EMAIL_PORT = 587
|
||||||
EMAIL_USE_TLS = True
|
EMAIL_USE_TLS = False
|
||||||
EMAIL_HOST_USER = "support@dev01.digitale-agentur.com"
|
EMAIL_HOST_USER = "support@digitale-agentur.com"
|
||||||
EMAIL_HOST_PASSWORD = "n2xd7emyKZFb6UREzvbintuUIG"
|
EMAIL_HOST_PASSWORD = "aPx9m3!7x3m@8o!t"
|
||||||
DEFAULT_FROM_EMAIL = "support@dev01.digitale-agentur.com"
|
DEFAULT_FROM_EMAIL = "support@digitale-agentur.com"
|
||||||
|
|
||||||
# DEV
|
# PROD
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.mysql',
|
'ENGINE': 'django.db.backends.mysql',
|
||||||
'NAME' : 'digitaleagentur_dev01',
|
'NAME' : 'digitaleagentur',
|
||||||
'USER' : 'digitaleagentur_dev01',
|
'USER' : 'digitaleagentur',
|
||||||
'PASSWORD' : 't3TvtGAOkFHYXdJlUMIu9u3U',
|
'PASSWORD' : 'H9hzbzyBqtUCnZlIwL1qSrzh',
|
||||||
'PORT' : 3306
|
'PORT' : 3306
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
############################################## DEV #####################################
|
############################################## PROD #####################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,7 @@
|
||||||
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
||||||
<div style="font-family:Roboto;font-size:18px;line-height:1;text-align:left;color:#000000;">
|
<div style="font-family:Roboto;font-size:18px;line-height:1;text-align:left;color:#000000;">
|
||||||
<p>Hallo {{user.first_name}} {{user.last_name}},</p>
|
<p>Hallo {{user.first_name}} {{user.last_name}},</p>
|
||||||
<p>ab sofort können Sie sich nur noch mit Ihrer E-Mailadresse als Benutzernamen in der Digitalen Agentur anmelden. Ihre hinterlegte Adresse lautet: <b>{{user.email}}.</b></p>
|
<p>aus Gründen der Einfachheit erfolgt die Anmeldung in der Digitalen Agentur zukünftig nur noch mit der E-Mailadresse. Ihre hinterlegte Adresse lautet: <b>{{user.email}}.</b></p>
|
||||||
<p>Weitere Informationen erhalten Sie von Ihrem Agenturleiter.
|
<p>Weitere Informationen erhalten Sie von Ihrem Agenturleiter.
|
||||||
<p>Mit freundlichen Grüßen</p>
|
<p>Mit freundlichen Grüßen</p>
|
||||||
<p>Ihr Team von Digitale Agentur</p>
|
<p>Ihr Team von Digitale Agentur</p>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue