12factor config support for Django
Project description
What is it?
Django is an awesome Python web framework.
“The Twelve-Factor App” is an awesome methodology for building SaaS apps.
dj12 makes Django more 12factor-y. Right now, this focuses on the Config - “Store config in the environment”; Heroku users with addons will be particularly familiar with this.
Still not sure of the benefits? Check out “Twelve-Factor Config: Misunderstandings and Advice”.
Installation
pip install dj12
At the end of your settings.py, add:
from dj12.config import *
And it’s done, your app supports 12factor config!
Still, you may want to delete obsolete config variables:
SECRET_KEY
SECURE_HSTS_PRELOAD
SECURE_HSTS_INCLUDE_SUBDOMAINS
SECURE_HSTS_SECONDS
SECURE_PROXY_SSL_HEADER
SECURE_SSL_REDIRECT
SESSION_COOKIE_SECURE
ALLOWED_HOSTS
FORCE_SCRIPT_NAME
DEBUG
DATABASES
CACHES
EMAIL_*
DEFAULT_FROM_EMAIL
LANGUAGE_CODE
TIME_ZONE
We also provide modern defaults for these variables, so you don’t need to set them yourself:
USE_I18N = True
USE_L10N = True
USE_TZ = True
Usage
Default settings are optimized for the development environments, and for doing nothing if you don’t use that particular Django feature. Change them only when you need to do so - for example, set DATABASE_URL when you need database persistency on production, and CACHE_URL when you need out-of-process cache on production.
Security
SECRET_KEY (required when DEBUG=off)
- Type:
string
A secret key for a particular environment. This is used to provide cryptographic signing, and should be set to a unique, unpredictable value.
This is the only required setting, because it’s a security issue to run without SECRET_KEY on production.
Keep this value secret.
Running Django with a known SECRET_KEY defeats many of Django’s security protections, and can lead to privilege escalation and remote code execution vulnerabilities.
Read more at Django: SECRET_KEY.
BASE_URL
- Type:
URL
- Default value:
URL prefix for all URLs exposed by this service.
If this is a https:// URL:
all non-https accesses will get redirected to https:// URLs (SECURE_SSL_REDIRECT),
cookies will be set as https-only (SESSION_COOKIE_SECURE),
HTTP Strict Transport Security will be enabled.
Access from different hostnames than the one set in BASE_URL will be blocked (ALLOWED_HOSTS) - note that you may override this behavior by setting ALLOWED_HOSTS environment variable.
Path component of the URL will be automatically prepended to all Django-generated URLs (reverse, FORCE_SCRIPT_NAME).
ALLOWED_HOSTS
- Type:
comma separated list
- Default value:
host of the BASE_URL
A list of strings representing the host/domain names that this Django site can serve. This is a security measure to prevent HTTP Host header attacks, which are possible even under many seemingly-safe web server configurations.
Read more at Django: ALLOWED_HOSTS.
TRUST_X_FORWARDED_PROTO
- Type:
boolean
- Default value:
off
Turn this on if your app is behind a reverse proxy that sends X-Forwarded-Proto header. This header tells Django if the request was sent thru a secure connection.
Read more at Django: SECURE_PROXY_SSL_HEADER.
HSTS_PRELOAD
- Type:
boolean
- Default value:
off
Turn this on if you are ready to add your website to the list of HTTPS-only websites distributed with all major browsers. This will mean that browsers will refuse to access it thru insecure connections, making a lot of man-in-the-middle attacks impossible.
Read more at hstspreload.org.
HSTS_INCLUDE_SUBDOMAINS
- Type:
boolean
- Default value:
off
Turn this on to inform browsers that HTTPS shall be required for all subdomains of your domain.
HSTS_SECONDS
- Type:
integer
- Default value:
10886400 (18 weeks) if HSTS_PRELOAD is on, else 3600 (1 hour) if BASE_URL uses https:// scheme, else 0
For how long browsers should refuse to access your domain thru insecure connections.
DEBUG
- Type:
boolean
- Default value:
off
A boolean that turns on/off debug mode.
Never deploy a site into production with DEBUG turned on.
Did you catch that? NEVER deploy a site into production with DEBUG turned on.
Read more at Django: DEBUG.
Backing resources
DATABASE_URL
- Type:
URL
- Default value:
sqlite:///db.sqlite3 (db.sqlite3 file in the current working directory)
This is the URL to your database.
Note: This configures the Django’s “default” database; you may also use WHATEVER_*DATABASE_URL to configure “*whatever” database.
Read more at dj-database-url.
CACHE_URL
- Type:
URL
- Default value:
locmem:// (memory)
This is the URL to your caching system.
Note: This configures the Django’s “default” cache; you may also use WHATEVER_*CACHE_URL to configure “*whatever” cache.
Read more at django-cache-url.
EMAIL_URL
- Type:
URL
- Default value:
console:// (print emails to the console)
This is the URL to your email sending system.
Supported backends:
SMTP Submission backend (submit:// - submit URI scheme)
console backend (console://)
file backend (file://)
in-memory backend (memory://)
dummy backend (dummy://)
With SMTP Submission backend, port 587 is used by default, and TLS is enabled. To disable TLS, add ?tls=off. To use legacy SMTP-over-SSL (usually on port 465), add ?ssl=on.
RAVEN_URL
- Type:
URL
Sentry DSN - use this if you’re using Sentry to monitor your app.
Note that you still have to add Raven app to INSTALLED_APPS, as we don’t want to always require it, and modifying the list of installed apps based on the environment variables is a bad idea. However, you may safely run Django with Raven installed but RAVEN_URL unset.
Configuration options
EMAIL_FROM
- Type:
email address
- Default value:
Default email address to use for emails sent to users.
Read more at Django: DEFAULT_FROM_EMAIL.
LANG
- Type:
string
- Default value:
en-us
Default language for the environment. Supports both standard language ID format, and UNIX $LANG format.
It serves two purposes:
If the locale middleware isn’t in use, it decides which translation is served to all users.
If the locale middleware is active, it provides a fallback language in case the user’s preferred language can’t be determined or is not supported by the website. It also provides the fallback translation when a translation for a given literal doesn’t exist for the user’s preferred language.
Read more at Django: LANGUAGE_CODE.
TIME_ZONE
- Type:
string
- Default value:
UTC
A string representing the time zone for this environment. See the list of time zones.
Read more at Django: TIME_ZONE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dj12-0.3.0.tar.gz
.
File metadata
- Download URL: dj12-0.3.0.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33a52918bc8eefcbf7f70ccd0f4647b7d53de372559b7e7ae408d4bec1e03095 |
|
MD5 | fdbbb5838dc6d1e658f8011922a2a3f0 |
|
BLAKE2b-256 | 19316e3d8607325c4720a83c48250a636e978be4b4aa9647ea54f711479a7926 |
File details
Details for the file dj12-0.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: dj12-0.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d95fa3489278d87121daecfcf3fb8166cec31e68bb83b1ed202a1da61c7a5b50 |
|
MD5 | 480b0b5c9a2810941699b4ac1eb60e75 |
|
BLAKE2b-256 | b36b482cdf4e7e4529a322295c5dcdbeb4178f5de63be31e5875c0bc2d67ddde |