Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files.
Project description
Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards in settings file paths and mark settings files as optional.
Requirements
Python 2.7, 3.4, 3.5
Django >= 1.5, <= 1.10 (depends on your Python version)
Installation
Install by using pip:
pip install django-split-settings
Usage
Replace your existing settings.py with a list of components that make up your Django settings. Preferably create a settings package that contains all the files.
Here’s a minimal example:
from split_settings.tools import optional, include
include(
'components/base.py',
'components/database.py',
optional('local_settings.py'),
scope=globals()
)
In the example, the files base.py and database.py are included in that order from the subdirectory called components/. local_settings.py in the same directory is included if it exists.
Note: The local context is passed on to each file, so each following file can access and modify the settings declared in the previous files.
Advanced example
Here’s an example of the new settings/__init__.py that also takes into consideration whether the user has supplied another settings module as a command line parameter. It also offers two different ways to override settings in the local installation:
import os
import socket
from split_settings.tools import optional, include
if os.environ['DJANGO_SETTINGS_MODULE'] == 'example.settings':
# must bypass this block if another settings module was specified
include(
'components/base.py',
'components/locale.py',
'components/apps_middleware.py',
'components/static.py',
'components/templates.py',
'components/database.py',
'components/logging.py',
# OVERRIDE SETTINGS
# hostname-based override, in settings/env/ directory
optional('env/%s.py' % socket.gethostname().split('.', 1)[0]),
# local settings (do not commit to version control)
optional(os.path.join(os.getcwd(), 'local_settings.py')),
# starting from version 0.2.3 it is not necessary to pass the scope,
# it finds parent `globals()` scope automatically,
# but it is still possible to pass it directly.
scope=globals()
)
The example also tries to include a settings file with the current hostname from the env/ directory for different configurations on each host.
Finally, it tries to locate local_settings.py from the working directory (usually the project root directory, assuming that you called manage.py runserver from there).
Tip: If you’re using Apache and mod_wsgi, you can set the working directory with the home option in the WSGIDaemonProcess directive.
Overriding settings
Files on the inclusion list can override and modify the settings configured in the previous files. For example:
components/base.py:
DEBUG = False
TEMPLATE_DEBUG = DEBUG
MIDDLEWARE_CLASSES = (
# Your project's default middleware classes
)
INSTALLED_APPS = (
# Your project's default apps
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'example',
'USER': 'db_user',
'PASSWORD': 'abc123',
'HOST': '',
'PORT': '',
}
}
local_settings.py:
# Use debug mode locally
DEBUG = True
TEMPLATE_DEBUG = DEBUG
# Add django-debug-toolbar
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar',)
# Use a different database password in development
DATABASES['default']['PASSWORD'] = 'password1'
Tips and tricks
You can use wildcards in file paths:
include(..., 'components/my_app/*.py', ...)
Note that files are included in the order that glob returns them, probably in the same order as what ls -U would list them. The files are NOT in alphabetical order.
Do you want to contribute?
Read the contribute file.
Changelog
See changelog file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-split-settings-0.2.3.tar.gz
.
File metadata
- Download URL: django-split-settings-0.2.3.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97f7402054284295c792ea43ddccc2249cf1f431160c1cd05bb02b4977ac25d7 |
|
MD5 | 937e8f7d21349515ca78d80c381f633d |
|
BLAKE2b-256 | 052ca8b6a7fc4fe8288f565f9b50949ec0866bc25cdedfaae71204eb0c39dbb3 |