Hi,
when there are multiple .env files specified in the dotenv section, only the first existing one is loaded.
Is this expected behaviour?
internal/core/dag.go
// loadDotEnv loads dotenv file
func (d *DAG) LoadDotEnv(ctx context.Context) {
...
// Load the first found one
return
}
}
It would be a nice feature to load multiple .env files.