Skip to content

Feature Flags

Distr uses a primitive approach on feature management. As long as a feature is not general available or we don’t think that is should be activated by default, it is hidden behind a feature flag. Feature flags are just an array in the postgres database. All feature types can be found in types.go.

If you want to enable a feature for an organization, you can do this by running the following command in your postgres database:

update organization set features ='{licensing}' where id = 'your-organization-id';