django-classy-settings icon indicating copy to clipboard operation
django-classy-settings copied to clipboard

Minimalist approach to class-based settings for Django

Results 6 django-classy-settings issues
Sort by recently updated
recently updated
newest added

Despite the name, this project really doesn't have anything in it that depends on Django other than the `context_processors` and tests. This library _could_ be just as useful with other...

both DATABASES and CACHES require complex settings structures, being lists of dicts of .... Provide some helpers for handling this, like URL based solutions. (Templates, too)

Composing settings from pre-built mixins and enabling features with USE_FOO = True

Currently due to a implementation detail the class is only instantiated once when invoking `Settings.use()`. If this were formalised, and an optional `ready()` method specified, we could allow a post-settings-selection...

closes#47 i have made these changes: 1- added django-environ as an optional dependency you could either make it a required dependency or make the methods more abstract so users can...