You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: document feature flag env vars and experiments config
Add CLIENT_CONFIG_OVERRIDES_JSON build-time injection and the
experiments config block to the installation guide, and add a
Features & Experiments section to the developer tools page.
Corresponds to SableClient/Sable#572
Copy file name to clipboardExpand all lines: content/features/developer-tools.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,3 +52,21 @@ See [Privacy & Crash Reporting](../privacy) for information on enabling or disab
52
52
# In-App Bug Report
53
53
54
54
Type `/bugreport` in any room's compose box to open the bug report form. This prefills a GitHub issue template with your description and optionally attaches your recent debug log export.
55
+
56
+
# Features & Experiments
57
+
58
+
The **Features & Experiments** panel (Settings → Developer Tools → Features & Experiments) shows
59
+
the feature flags and A/B experiments defined in your deployment's `config.json`.
60
+
61
+
For each configured experiment you can see:
62
+
63
+
-**Enabled** — whether the experiment is active for any users
64
+
-**Rollout** — the percentage of users enrolled
65
+
-**Your Variant** — the variant you have been assigned, and whether you are in the
66
+
experiment group or the control group
67
+
68
+
This is useful for verifying that a flag was deployed correctly, or for confirming which arm
69
+
of an experiment you are currently in. Variant assignment is deterministic: the same account
70
+
always receives the same variant for a given experiment key, across devices and sessions.
71
+
72
+
See [Installation → Feature flag and experiment configuration](../installation/#feature-flag-and-experiment-configuration) for how operators define experiments.
0 commit comments