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.
Read this blog post for more information. Also, check this example project.
Requirements
While this package will most likely work with the most versions of django
, we do not officially support any versions except the latest release and the current LTS version, which are 1.11
and 2.2
right now.
This package has no dependencies itself.
In case you need older python
/ django
versions support,
then consider using older versions.
Installation
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')
)
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.
We also made a in-depth tutorial.
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.
You can modify common settings in environment settings simply importing them
# local_settings.py
from components.base import INSTALLED_APPS
INSTALLED_APPS += (
'raven.contrib.django.raven_compat',
)
Do you want to contribute?
Read the CONTRIBUTING.md file.
Version history
See CHANGELOG.md 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
Built Distribution
Hashes for django-split-settings-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5a5c6431ab00a78959f7930a79faaf488b2fe8a4eddc4297ef8cd593e74868d |
|
MD5 | daf5eb053597a7ee9cc2f8e8e1705e0b |
|
BLAKE2b-256 | ff005f4a07fd1c7bc1d7e0ad828cf548e27da9fbc59ce418745c8905b38b6b21 |
Hashes for django_split_settings-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db4d24a2da2f17e0aa97437f052eda7d043a3e2eaa9c8a85a171271e0f91852b |
|
MD5 | 74bbbf1c71eec16ddea8e526ecfbb2a6 |
|
BLAKE2b-256 | 46c0893f6d82e8d1cb5b675e78b7ec59f3b64898555e3e80c52a6502146de2f1 |