Hi,
I think that the Env variable of the remote API needs to be better documented. Basically, while I can set environment variables properly from the cli, I cannot get it working using the remote API.
I user the remote API v1.8 and I have tried sending the env variables in the following formats:
- string:
"[MY_VAR=MY_VALUE]"
- JSON list:
[MY_VAR=MY_VALUE]
- JSON dict:
{"MY_VAR": "MY_VALUE"}
None of these formats seem to work. So what is the formal way of doing that? After this information comes out, I can make a pull request on the documentation, fixing that.
Thanks.