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
The current implementation does not support default values in localEnv or containerEnv substitution that include a colon.
Example:
"WEBSITE_URL": "${localEnv:WEBSITE_URL:https://example.com"
Current behavior: If $WEBSITE_URL is not present, the variable is just set to https
$WEBSITE_URL
https
Expected behavior: If $WEBSITE_URL is not present, the variable should be set to https://example.com
https://example.com
The text was updated successfully, but these errors were encountered:
PR #882
Sorry, something went wrong.
No branches or pull requests
The current implementation does not support default values in localEnv or containerEnv substitution that include a colon.
Example:
Current behavior: If
$WEBSITE_URL
is not present, the variable is just set tohttps
Expected behavior: If
$WEBSITE_URL
is not present, the variable should be set tohttps://example.com
The text was updated successfully, but these errors were encountered: