You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would modify the load order to look something like this:
Default values
Existing environment variables
gotdotenv import of .env files
Configuration file
Command-line flags
As of this writing we're using the alexflint/go-arg package for flags and environment variable support. My understanding is that by using the godotenv package to load .env files the alexflint/go-arg package will automatically "see" the environment variables and use them. This should make the existing configuration setup seamless.
The text was updated successfully, but these errors were encountered:
When implemented, the traditional precedence of
.env
files should be followed.This would modify the load order to look something like this:
.env
filesAs of this writing we're using the
alexflint/go-arg
package for flags and environment variable support. My understanding is that by using thegodotenv
package to load.env
files thealexflint/go-arg
package will automatically "see" the environment variables and use them. This should make the existing configuration setup seamless.The text was updated successfully, but these errors were encountered: