22 строки
393 B
JSON
22 строки
393 B
JSON
{
|
|
"stages": {
|
|
"test": [
|
|
{"allowlist": ["test.*", "dev.*"]}
|
|
],
|
|
"canary": [
|
|
{"allowlist": ["prod-canary"]}
|
|
],
|
|
"prod": [
|
|
{"allowlist": ["prod.*"]},
|
|
{"denylist": ["prod-canary"]}
|
|
]
|
|
},
|
|
"features": {
|
|
"experimental-feature": {
|
|
"stages": ["test"]
|
|
},
|
|
"well-tested-feature": {
|
|
"stages": ["test", "canary", "prod"]
|
|
}
|
|
}
|
|
} |