Reputation: 9793
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.
Upvotes: 4
Views: 3545
Reputation: 248
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.
Upvotes: 4
Reputation: 11389
Django waffle is also a well maintained feature switcher: django-waffle
Upvotes: 3