Skip to main content

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:

http://localhost:8000/

URL prefix for all URLs exposed by this service.

If this is a https:// URL:

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:

webmaster@localhost

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

dj12-0.3.0.tar.gz (8.2 kB view hashes)

Uploaded Source

Built Distribution

dj12-0.3.0-py2.py3-none-any.whl (12.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page