You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
637 B
Plaintext
31 lines
637 B
Plaintext
# This is an override file for wish's settings.
|
|
# It is pure Python, sourced from the settings.
|
|
# This file should be the only one to hold instance/deployment specific settings.
|
|
|
|
# This is an example. It may serve as a reasonable start, but do not just
|
|
# blindly copy it to your production environment and expect it to work.
|
|
|
|
DEBUG = False
|
|
SECRET_KEY = ...
|
|
ALLOWED_HOSTS = [...]
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': ...,
|
|
...: ...,
|
|
},
|
|
}
|
|
|
|
EMAIL_BACKEND = ...
|
|
DEFAULT_FROM_EMAIL = ...
|
|
SERVER_EMAIL = ...
|
|
|
|
STATIC_ROOT = ...
|
|
STATIC_URL = ...
|
|
|
|
# MEDIA_ROOT = ...
|
|
# MEDIA_URL = ...
|
|
|
|
# Maybe configure LOGGING?
|
|
ADMINS = ...
|
|
MANAGERS = ...
|