Warning: This document is for the development version of Feature Toggle. The main version is master.

Feature Toggle

Feature Toggle is a simple Django app based on the behavioural pattern Feature Toggle proposed by Martin Fowler.

Quickstart

  1. Install the package pip install django-feature-toggle

  2. Add “feature_toggle” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'feature_toggle',
    ]
    
  3. Run python manage.py migrate to create the models required feature_toggle.

  4. Start your app to use the feature_toggle.