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
To be fully 12 factor compliant, we shall allow overriding config with env variables.
// foo.config.ts export default { bar: { baz: 123 } }
Using FOO_CONFIG_BAR_BAZ=456, should override baz value.
FOO_CONFIG_BAR_BAZ=456
baz
The text was updated successfully, but these errors were encountered:
Tracking via #16
Sorry, something went wrong.
No branches or pull requests
To be fully 12 factor compliant, we shall allow overriding config with env variables.
Using
FOO_CONFIG_BAR_BAZ=456
, should overridebaz
value.The text was updated successfully, but these errors were encountered: