Changes between Version 30 and Version 31 of SplitSettings


Ignore:
Timestamp:
May 20, 2013, 1:07:30 AM (11 years ago)
Author:
roxeteer
Comment:

Added django-split-settings

Legend:

Unmodified
Added
Removed
Modified
  • SplitSettings

    v30 v31  
    722722
    723723Another option we use at ledapei.com is [https://github.com/hrbonz/django-flexisettings django-flexisettings] which breaks down configuration files in a very easy to use way. The stress is put on flexibility and powerful configuration possibilities, the project is then easy to share between multiple environments/developers. For instructions read the [https://github.com/hrbonz/django-flexisettings#installation installation document].
     724
     725== django-split-settings ==
     726
     727See the [http://www.2general.com/blog/2013/05/17/django_settings_split.html blog post] and [https://github.com/2general/django-split-settings GitHub project page] for details. Main features:
     728
     729 * Settings can be split into files and directories.
     730 * Files later in the list can modify configurations, for example add or remove apps from INSTALLED_APPS.
     731 * The main settings file lists the files that make up the project’s settings.
     732 * Files can be marked optional. Optional files can be used to override settings per instance.
     733 * Wildcards can be used in file paths.
     734 * Maintains support for Django’s runserver auto-reloading.
Back to Top