mirror of https://gitlab.crans.org/bde/nk20
Production is not debug
This commit is contained in:
parent
18bdc8044b
commit
0b6cb4ef19
|
@ -25,7 +25,7 @@ DATABASES = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Break it, fix it!
|
# Break it, fix it!
|
||||||
DEBUG = True
|
DEBUG = False
|
||||||
|
|
||||||
# Mandatory !
|
# Mandatory !
|
||||||
ALLOWED_HOSTS = [os.environ.get('NOTE_URL', 'localhost')]
|
ALLOWED_HOSTS = [os.environ.get('NOTE_URL', 'localhost')]
|
||||||
|
@ -36,7 +36,7 @@ SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY', 'CHANGE_ME_IN_ENV_SETTINGS')
|
||||||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||||||
EMAIL_USE_SSL = False
|
EMAIL_USE_SSL = False
|
||||||
EMAIL_HOST = os.getenv('EMAIL_HOST', 'smtp.example.org')
|
EMAIL_HOST = os.getenv('EMAIL_HOST', 'smtp.example.org')
|
||||||
EMAIL_PORT = os.getenv('EMAIL_PORT', 443)
|
EMAIL_PORT = os.getenv('EMAIL_PORT', 465)
|
||||||
EMAIL_HOST_USER = os.getenv('EMAIL_USER', 'change_me')
|
EMAIL_HOST_USER = os.getenv('EMAIL_USER', 'change_me')
|
||||||
EMAIL_HOST_PASSWORD = os.getenv('EMAIL_PASSWORD', 'change_me')
|
EMAIL_HOST_PASSWORD = os.getenv('EMAIL_PASSWORD', 'change_me')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue