Skip to main content

Turnkey Django settings for data management applications.

Project description

django-composed-configuration

PyPI

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 mutate_configuration(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_MODULE environment variable (pointing to settings.py)
  • also set DJANGO_CONFIGURATION, with a value of either DevelopmentConfiguration or ProductionConfiguration

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

django-composed-configuration-0.22.0.tar.gz (27.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-composed-configuration-0.22.0.tar.gz.

File metadata

File hashes

Hashes for django-composed-configuration-0.22.0.tar.gz
Algorithm Hash digest
SHA256 4c5e4dd17ac1c70e3aff3476638593f81c47a00037c452a0a9a28fa8a25da065
MD5 4b3406bb666a517aa52f70862dd95df0
BLAKE2b-256 75a85c80d44c5306c14c8bac06de80419aa41383c33a9db0f680b0cce1e74c2a

See more details on using hashes here.

File details

Details for the file django_composed_configuration-0.22.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_composed_configuration-0.22.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ed9689128a618d25d6ca03cdffbe13189f0403ee390692a7521524744eb12821
MD5 6a4c4db7cb1bb1a204634ab38adb6016
BLAKE2b-256 fa3e51b9855a83fc782a5bddfbaa785dd8a74b1185c8240f35d923656547bdbe

See more details on using hashes here.

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