Archived
This project has been archived by its maintainers, and is no longer receiving any updates.
django-composed-configuration
Turnkey Django settings for data management applications.
Installation
Add to your project's requirements:
django-composed-configuration[dev,prod]
In your project's settings.py:
from composed_configuration import (
ComposedConfiguration,
ConfigMixin,
DevelopmentBaseConfiguration,
ProductionBaseConfiguration,
)
class _ProjectMixin(ConfigMixin):
# Define additional project-specific settings or overrides here
pass
@staticmethod
def before_binding(configuration: ComposedConfiguration) -> None:
# Perform any non-overriding mutation of existing settings here
# The "configuration" variable contains the flattened settings
# For example:
# configuration.INSTALLED_APPS += ['my_extra_app']
pass
class DevelopmentConfiguration(_ProjectMixin, DevelopmentBaseConfiguration):
pass
class ProductionConfiguration(_ProjectMixin, ProductionBaseConfiguration):
pass
At runtime:
- continue to set the
DJANGO_SETTINGS_MODULEenvironment variable (pointing tosettings.py) - also set
DJANGO_CONFIGURATION, with a value of eitherDevelopmentConfigurationorProductionConfiguration
Release files for django-composed-configuration 0.15.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-composed-configuration-0.15.1.tar.gz | 23.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_composed_configuration-0.15.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 50.8 kB
Release files / django-composed-configuration-0.15.1.tar.gz
| Download URL | django-composed-configuration-0.15.1.tar.gz |
|---|---|
| Size | 23.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8b520bee5ae7d2f9bbc9cfb3e19b683fe3d1cbe7cc5744002ee2cfe2db9a5646
|
|
BLAKE2b-256 checksum How to use checksums |
e96509204ddf7a172834c833bae8a10e18136d3aac5c6cf83a140496de42cace
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
|
Release files / django_composed_configuration-0.15.1-py3-none-any.whl
| Download URL | django_composed_configuration-0.15.1-py3-none-any.whl |
|---|---|
| Size | 27.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
41fbfb13999cd5ae457adb98d60d2b71dce836cf70d3b9369bfb2a3cc621068a
|
|
BLAKE2b-256 checksum How to use checksums |
54c577b56a4b9f9c32c6f01794184b70373bb360684d747292b7c05869100fb3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
|