You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
# Base directory of the app instance, where the local and var folders are |
|
# located. Default is the current directory. |
|
# BASE_DIR= |
|
|
|
# Database configuration as an URL. |
|
# /!\ It must be set in production. |
|
# DJANGO_DATABASE_URL=psql://user:password@127.0.0.1:5432/test-wagtail |
|
|
|
# Email configuration as an URL. Default is the local SMTP server in |
|
# production and the console in development. |
|
# DJANGO_EMAIL_URL=smtp+tls://localhost:587 |
|
|
|
# Default email address to use for various automated correspondence. |
|
# /!\ It must be set in production. |
|
# DEFAULT_FROM_EMAIL=webmaster@example.org |
|
|
|
# Environment to use within the application. |
|
# Note that if you want to change the default value, this variable should be |
|
# either set by your uWSGI server or defined in your OS environment. |
|
# DJANGO_SETTINGS_MODULE=test-wagtail.settings.production |
|
|
|
# The secret key used to provide cryptographic signing. It should be set to |
|
# a unique, unpredictable value. On a GNU/Linux system, you could generate a |
|
# new one with: |
|
# $ head -c50 /dev/urandom | base64 |
|
# /!\ It must be set in production. |
|
# DJANGO_SECRET_KEY=CHANGEME!!! |
|
|
|
# A coma-separated string representing the host/domain names that this Django |
|
# site can serve. |
|
# DJANGO_ALLOWED_HOSTS=example.org, |
|
|
|
# Turn on/off debug mode. Note that it's always disabled in production. |
|
# DJANGO_DEBUG=off |
|
|
|
# Location on which the application is served. |
|
# APP_LOCATION=/
|
|
|