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.25.0.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_composed_configuration-0.25.0.tar.gz.

File metadata

File hashes

Hashes for django_composed_configuration-0.25.0.tar.gz
Algorithm Hash digest
SHA256 f7ccb08bbced9dd93c39cbf9c0da5b463e8e76df061a650f1c2f0421364b7dbf
MD5 0f3112ddf72e1ce6c1eca73ca4e104eb
BLAKE2b-256 e1ba2a8d3302c849bbb45983aa7123b07eee987ef6fdfb5817b8f28034a2b52d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for django_composed_configuration-0.25.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0b161f349f043611305c60494e88b1a8eed371ca71cc6ae5e40e7efd2f6c04ef
MD5 65d6408b14f28ca9931cdf50c1396042
BLAKE2b-256 7dad7b6b1e87be84785ecc872130ea67c113391de1ee880e4265e8f80d7615d0

See more details on using hashes here.

Provenance

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