Skip to content

Instantly share code, notes, and snippets.

@mainawycliffe
Created October 26, 2022 18:48
Show Gist options
  • Save mainawycliffe/a189fc50eb01e0a53d527b5c74dcb72c to your computer and use it in GitHub Desktop.
Save mainawycliffe/a189fc50eb01e0a53d527b5c74dcb72c to your computer and use it in GitHub Desktop.
viper.SetEnvPrefix("APP_")
// binds "APP_PORT" or "APP_DB_PORT" to config key "port"
err := viper.BindEnv("port", "PORT", "DB_PORT" )
if err != nil {
log.Fatalf("Error binding env: %v", err)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment