in config.go [127:135]
func GetLocationsFromEnvironment() []string {
configPaths := make([]string, 0, len(configLocations))
for _, env := range configLocations {
if envValue := os.Getenv(env); envValue != "" {
configPaths = append(configPaths, envValue)
}
}
return configPaths
}