/django-feature-toggle

Feature Toggle implementation as a pluggable django app.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Feature Toggle

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

PyPi: https://pypi.org/project/django-feature-toggle/

Source: https://github.com/thulasi-ram/django-feature-toggle

Docs: https://thulasi-ram.github.io/django-feature-toggle

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.