No, I just have a big config file and edit it directly. I don't have a lengthy build pipeline, so changes take place virtually immediately.
Ask HN: Do you use a feature flag system? What does it look like?
11–12 of 12 posts
Re: Ask HN: Do you use a feature flag system? What does it look like?
#12I have feature flags for the different versions of my product. I can't change them live, I do make a build with specific flags enabled based on the env variables set on build (in .env files).
I simply use GulpJS with the removeIf plugin, which completely adds/removes the code of the feature.