Created
February 12, 2018 17:50
-
-
Save tal/4622f7838dea211b48b7b0f1eecebb1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"features": { | |
"my_feature": false, | |
"other_feature": true | |
}, | |
"experiments": { | |
"likes_are_boops": "control-likes", | |
"dashboard_sideways": "sideways-1" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"feature_config": { | |
"likes_are_boops": { | |
"variant": "boops", | |
"bucket": "boops-1" | |
}, | |
"dashboard_sideways": { | |
"variant": "vertical", | |
"bucket": "control-1", | |
}, | |
"my_feature": { | |
"variant": "enabled" | |
}, | |
"other_feature": { | |
"variant": "disabled" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
likes_are_boops: | |
capability: request.app_version(">=", "11.12") | |
variants: | |
- heart | |
- boop | |
- star | |
default: heart | |
planout_namespace: likes_are_boops | |
overrides: | |
- when: request.user.is_internal_tester | |
variant: boop | |
- when: planout_bucket like '/^boop/' | |
variant: boop | |
- when: planout_bucket like '/^star/' | |
variant: star | |
- when: planout_bucket like '/^control/' | |
variant: heart | |
my_feature: | |
capability: request.app_version(">=", "1.2") | |
# variants defaults to ["enabled","disabled"] | |
default: enabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment