We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I define a StringMap() I can set multiple key/value pairs by repeating the flag:
--flag foo=bar --flag baz=bar
But this can not work with environment variables because you can only have one variable of the same name:
APP_FLAG=foo=bar
I could not find a way to set the second parameter with the env var - is this supported? I tried to add a \n to it but it didnt work.
The text was updated successfully, but these errors were encountered:
You should be able to set APP_FLAG to a newline separated list:
APP_FLAG="foo=bar baz=bar"
Sorry, something went wrong.
No branches or pull requests
If I define a StringMap() I can set multiple key/value pairs by repeating the flag:
But this can not work with environment variables because you can only have one variable of the same name:
I could not find a way to set the second parameter with the env var - is this supported? I tried to add a \n to it but it didnt work.
The text was updated successfully, but these errors were encountered: