v1
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
from app.experiments.registry import EXPERIMENT_REGISTRY
|
||||
|
||||
__all__ = ["EXPERIMENT_REGISTRY"]
|
||||
@@ -0,0 +1,46 @@
|
||||
EXPERIMENT_REGISTRY = {
|
||||
"homepage_hero_test": {
|
||||
"experiment_key": "homepage_hero_test",
|
||||
"cookie_name": "exp_homepage_hero",
|
||||
"name": "Homepage hero test",
|
||||
"description": "Homepage hero messaging and CTA emphasis.",
|
||||
"enabled": True,
|
||||
"eligible_routes": ["/"],
|
||||
"variants": [
|
||||
{
|
||||
"variant_key": "control",
|
||||
"label": "Current hero copy",
|
||||
"allocation": 50,
|
||||
"is_control": True,
|
||||
},
|
||||
{
|
||||
"variant_key": "tiny_gang_social_proof",
|
||||
"label": "Tiny Gang social proof",
|
||||
"allocation": 50,
|
||||
"is_control": False,
|
||||
},
|
||||
],
|
||||
},
|
||||
"pricing_cta_test": {
|
||||
"experiment_key": "pricing_cta_test",
|
||||
"cookie_name": "exp_pricing_cta",
|
||||
"name": "Pricing CTA test",
|
||||
"description": "Pricing CTA emphasis without changing page meaning.",
|
||||
"enabled": True,
|
||||
"eligible_routes": ["/our-pricing"],
|
||||
"variants": [
|
||||
{
|
||||
"variant_key": "control",
|
||||
"label": "Book now CTA",
|
||||
"allocation": 50,
|
||||
"is_control": True,
|
||||
},
|
||||
{
|
||||
"variant_key": "meet_greet_emphasis",
|
||||
"label": "Meet and greet emphasis",
|
||||
"allocation": 50,
|
||||
"is_control": False,
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user