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
}
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")
}