Skip to main content

Django live settings with pluggable backends, including Redis. Leonardo Fork from Jannis Leidel

Project description

This is adopted version of standard library for Leonardo CMS.

Additionaly features:

  • boolean, numbers, strings, dictionaries

  • support for Django 1.8 +

  • basic grouping via CONSTANCE_CONFIG_GROUPS which makes tabs for django admin

  • access to config keys from standard django settings

  • really live settings, set every value to django settings and respect the default value from them

CONSTANCE_CONFIG = {
    'MEDIA_ENABLED': (True, 'Help Text'),
    'MEDIA_THUMBNAILS': ({
            'SMALL': '64x64',
            'MEDIUM': '265x265',
        }, 'Help Text')
}
CONSTANCE_CONFIG_GROUPS = {'Group 1': {
                            MY_AWESOME_KEY: ('default', help text)
                            }
                        }
from django.conf import settings

settings.MY_AWESOME_KEY

settings.py

DEBUG = True

CONSTANCE_CONFIG_GROUPS = {'Group 1': {
                            DEBUG: (False, help text)
                            }
                        }

from django.conf import settings
settings.DEBUG
-> True

after setting up value in the admin to False:

from django.conf import settings
settings.DEBUG
-> False
Build Status

A Django app for storing dynamic settings in pluggable backends (Redis and Django model backend built in) with an integration with the Django admin app.

For more information see the documentation at:

http://django-constance.readthedocs.org/

If you have questions or have trouble using the app please file a bug report at:

https://github.com/jezdez/django-constance/issues

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

leonardo-constance-1.0.0a2.tar.gz (123.3 kB view hashes)

Uploaded Source

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