Set up feature flags in FlagSync to manage and test variants.
Start by setting up a FlagSync project (try the 14-day free trial, no credit card needed), then create a flag via the Flags dashboard.
Set It Up
signup-cta
) for code use.Select Type
On/off switches
Perfect for:
Enable/disable features
Beta feature toggles
Predefined options
Common uses:
Theme: light-mode
, dark-mode
CTA: Register
, Join Now
Numeric values
Common uses:
Rate limits: 1000
, 5000
, 10000
Image quality: 75
, 80
, 100
Complex objects
Common uses:
{ "layout": "grid", "maxItems": 8 }
Variants
Define the variants to serve (e.g., 0.00
, 0.10
, 0.20
for discount-rate
).
Choose Default Variants
Set defaults for discount-rate
:
0.20
(20% discount).0.00
(no discount).0.20
) is served unless overridden by targeting.0.00
) applies to all users.Save It
Click “Create Flag” to save.
Activate It