54 строки
1.1 KiB
JSON
54 строки
1.1 KiB
JSON
{
|
|
"stages": {
|
|
"all-except-important": [
|
|
{
|
|
"denylist": [
|
|
"^important$"
|
|
]
|
|
}
|
|
],
|
|
"poc": [
|
|
{
|
|
"allowlist": [
|
|
"demo/.*demofeature.*"
|
|
]
|
|
}
|
|
],
|
|
"dev": [
|
|
{
|
|
"allowlist": [
|
|
"Dev.*"
|
|
]
|
|
}
|
|
],
|
|
"test": [
|
|
{
|
|
"allowlist": [
|
|
"demo/.*test.*/.*Official.*",
|
|
"demo2/.*test2.*"
|
|
]
|
|
}
|
|
],
|
|
"prod": [
|
|
{
|
|
"allowlist": [
|
|
"production/.*"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"features": {
|
|
"filetracker": {
|
|
"stages": ["poc","dev", "prod"],
|
|
"environmentVariables": [
|
|
{ "Use_FileTracker": "1" }
|
|
]
|
|
},
|
|
"newestfeature": {
|
|
"stages": ["all-except-important"]
|
|
},
|
|
"testfeature": {
|
|
"stages": ["test"]
|
|
}
|
|
}
|
|
} |