19 lines
525 B
Plaintext
19 lines
525 B
Plaintext
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ACCOUNT_ACTIVATION_DAYS = 1
|
|
REGISTRATION_OPEN = True
|
|
DEFAULT_FROM_EMAIL = 'no-reply@example.org'
|
|
EMAIL_HOST = 'smtp.example.org'
|
|
EMAIL_PORT = 25
|
|
EMAIL_HOST_USER = 'myuser'
|
|
EMAIL_HOST_PASSWORD = 'topsecret'
|
|
EMAIL_USE_TLS = True
|
|
|
|
SITE_ID = 1
|
|
ABOUT_URL = 'https://about.example.com'
|
|
TIME_ZONE = 'Europe/Amsterdam'
|