Add example secrets file
The file should hold all instance-specific configurationnewer-dal
parent
38fa3f0795
commit
c0ece9ca5e
@ -0,0 +1,20 @@
|
||||
# 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 = ...
|
Loading…
Reference in New Issue