Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Beginner's guide to Feature flags - Django

I am trying to understand Django's Gargoyle library - a feature flag library and cannot wrap my head around as to how it should be implemented. Does anyone know of any tutorial or can guide me how to go about it?

Also, if anyone has experience implementing a feature flag library apart from Gargoyle and thinks it has better documentation and ease of use than Gargoyle, please do share.

like image 531
name_masked Avatar asked Mar 20 '23 03:03

name_masked


2 Answers

You can find a Django feature switcher sample here.

This is how you can check the feature flags in the sample-code.

You can manage your feature flags on configcat.com.

like image 146
mon Avatar answered Mar 29 '23 08:03

mon


Django waffle is also a well maintained feature switcher: django-waffle

like image 32
Steve K Avatar answered Mar 29 '23 07:03

Steve K