name_masked
name_masked

Reputation: 9793

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.

Upvotes: 4

Views: 3545

Answers (2)

mon
mon

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

Steve K
Steve K

Reputation: 11389

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

Upvotes: 3

Related Questions