Skip to main content

A simple, extensible YAML-based configuration strategy for Django

Project description

Settings Manager

This project provides a simple and extensible strategy for managing Django settings.

Settings file format

There are three main sections:

  • configure - This is intended to be set up before most processing in settings.py, and should mostly be used to enable/disable built-in features. For example, settings.py might configure remote user auth if ENABLE_REMOTE_USER_AUTH is true.
  • override - This is used to override settings.py. Use this section for database settings and other more complex configurations that are environment specific.
  • inject - This is used to override values using one of the built-in fuctions, or any user-defined function that is made available.

Example settings.py file

import sys
import os
from settings_manager import SettingsManager


settings_manager = SettingsManager(os.environ.get("DJANGO_SETTINGS_FILE", "/etc/django-settings.yaml"))

# Defaults for configurable items
ENABLE_REMOTE_USER_AUTH = False
ENABLE_MODEL_AUTH = False

# Configure settings manager
settings_manager.configure(sys.modules[__name__])

# Set the module's base directory
BASE_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

AUTHENTICATION_BACKENDS = [
    'django.contrib.auth.backends.ModelBackend' if ENABLE_MODEL_AUTH else None,
    'shibboleth.backends.ShibbolethRemoteUserBackend' if ENABLE_REMOTE_USER_AUTH else None,
]

# ... other configuration ...

# Rebuild AUTHENTICATION_BACKENDS to remove null values
AUTHENTICATION_BACKENDS = [m for m in AUTHENTICATION_BACKENDS if m is not None]

settings_manager.override(sys.modules[__name__])

Sample configuration (YAML) file

inject:
  DATABASES.default.password:
    function: get_env
    args: [DJANGO_DATABASE_PASSWORD]

  DEBUG:
    function: get_env
    args: [DJANGO_DEBUG]
    value_processors:
      - function: str_to_bool
        args: ['<<value>>']

configure:
  ENABLE_REMOTE_USER_AUTH: true

override:
  DATABASES:
    default:
      username: django
      name: django
      host: db
      port: 5432
      password: ~  # will be replaced by injected value.

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-settings-manager-0.0.4.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_settings_manager-0.0.4-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file django-settings-manager-0.0.4.tar.gz.

File metadata

  • Download URL: django-settings-manager-0.0.4.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.2

File hashes

Hashes for django-settings-manager-0.0.4.tar.gz
Algorithm Hash digest
SHA256 f96eb77c54b327a42054a52f87e574a113dccf78be6a7e52517d846d8bd40144
MD5 0f7c9dc3e04426d89af029139125401f
BLAKE2b-256 3f18d210585b3a6425a4e3110042c4c3fae0b12216a73d7e5d02b916b0bd16bb

See more details on using hashes here.

File details

Details for the file django_settings_manager-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: django_settings_manager-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.2

File hashes

Hashes for django_settings_manager-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9ff7bd1b2e949221908026ca76df112db0807448e7cf1595005fed93a5da720c
MD5 7d73e95ed657cba66f3ee41fb685bc47
BLAKE2b-256 1d7e52a46adc1c999a597a8580fa44ec42e65e10f5b49b3dd136278c24073b99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page