Suppose i have the following json :
{
"object": {
"var1": "val1",
"var2": "val2"
},
}
which is loaded fine by gonfig. What is the expected format to ovverride it from the ENV vars ?
I tried some things like :
- "var1:val1 var2:val2"
- "[var1:val1 var2:val2]"
- "{var1:val1 var2:val2}"
but it don't seems to work. More supprisingly it keeps default values without complaining.
good job !