19 lines
289 B
Plaintext
19 lines
289 B
Plaintext
# Environment-specific patches.
|
|
|
|
base = {
|
|
env = "dev";
|
|
tags = ["decodal", "dev"];
|
|
};
|
|
|
|
prod = base // {
|
|
env = "prod";
|
|
host = "api.internal";
|
|
feature.limit = 100;
|
|
tags = ["decodal", "prod"];
|
|
};
|
|
|
|
disabled = base // {
|
|
feature.enable = false;
|
|
tags = ["decodal", "disabled"];
|
|
};
|