feat: use env path as parameter

This commit is contained in:
Urko 2023-03-03 22:46:49 +01:00
parent 4877f72f04
commit f56e85cc64
1 changed files with 3 additions and 3 deletions

View File

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