feat: use env path as parameter

main
Urko 1 year ago
parent 4877f72f04
commit f56e85cc64

@ -27,9 +27,9 @@ func RootDir() string {
return rootDir
}
func NewConfig(isProd bool) *Config {
if !isProd {
err := godotenv.Load(RootDir() + "/.env")
func NewConfig(envFilePath string) *Config {
if envFilePath != "" {
err := godotenv.Load(envFilePath)
if err != nil {
log.Fatalf("environment variable ENV is empty and an error occurred while loading the .env file\n")
}

Loading…
Cancel
Save