Feature Toggle¶
Feature Toggle is a simple Django app based on the behavioural pattern Feature Toggle proposed by Martin Fowler.
Quick links¶
Quickstart¶
Install the package
pip install django-feature-toggle
Add “feature_toggle” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'feature_toggle', ]
Run
python manage.py migrate
to create the models required feature_toggle.Start your app to use the feature_toggle.