Django live settings with pluggable backends, including Redis. Leonardo Fork from Jannis Leidel
Project description
Constance - Dynamic Django settings
===================================
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
.. code-block:: python
CONSTANCE_CONFIG = {
'MEDIA_ENABLED': (True, 'Help Text'),
'MEDIA_THUMBNAILS': ({
'SMALL': '64x64',
'MEDIUM': '265x265',
}, 'Help Text')
}
.. code-block:: python
CONSTANCE_CONFIG_GROUPS = {'Group 1': {
MY_AWESOME_KEY: ('default', help text)
}
}
.. code-block:: python
from django.conf import settings
settings.MY_AWESOME_KEY
settings.py
.. code-block:: python
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
If you can add your custom field types, you can use the
`CONSTANCE_ADDITIONAL_FIELDS` variable. Note that you must
use later evaluated strings instead of direct classes:
.. code-block:: python
CONSTANCE_ADDITIONAL_FIELDS = {
'yes_no_null_select': ['django.forms.fields.ChoiceField',
{
'widget': 'django.forms.Select',
'choices': (("-----", None), ("yes", "Yes"), ("no", "No"))
}],
}
CONSTANCE_CONFIG = {
'MY_SELECT_KEY': ('yes', 'select yes or no', 'yes_no_null_select'),
}
.. image:: https://secure.travis-ci.org/jezdez/django-constance.png
:alt: Build Status
:target: http://travis-ci.org/jezdez/django-constance
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
===================================
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
.. code-block:: python
CONSTANCE_CONFIG = {
'MEDIA_ENABLED': (True, 'Help Text'),
'MEDIA_THUMBNAILS': ({
'SMALL': '64x64',
'MEDIUM': '265x265',
}, 'Help Text')
}
.. code-block:: python
CONSTANCE_CONFIG_GROUPS = {'Group 1': {
MY_AWESOME_KEY: ('default', help text)
}
}
.. code-block:: python
from django.conf import settings
settings.MY_AWESOME_KEY
settings.py
.. code-block:: python
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
If you can add your custom field types, you can use the
`CONSTANCE_ADDITIONAL_FIELDS` variable. Note that you must
use later evaluated strings instead of direct classes:
.. code-block:: python
CONSTANCE_ADDITIONAL_FIELDS = {
'yes_no_null_select': ['django.forms.fields.ChoiceField',
{
'widget': 'django.forms.Select',
'choices': (("-----", None), ("yes", "Yes"), ("no", "No"))
}],
}
CONSTANCE_CONFIG = {
'MY_SELECT_KEY': ('yes', 'select yes or no', 'yes_no_null_select'),
}
.. image:: https://secure.travis-ci.org/jezdez/django-constance.png
:alt: Build Status
:target: http://travis-ci.org/jezdez/django-constance
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file leonardo-constance-1.0.0.0a10.dev1.tar.gz
.
File metadata
- Download URL: leonardo-constance-1.0.0.0a10.dev1.tar.gz
- Upload date:
- Size: 124.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b98365776441dcb9d6619df2bab8ae4310e1b6bd37a01e51b395a3c9312d9e60 |
|
MD5 | 49761e7814d7fb0f46d264cd72aa80ba |
|
BLAKE2b-256 | b27031d06868765ebf2dbfc5ae55a98092c5c7d0403308469f4a3ced9348beee |