specify the base directory for loading the .env file

This commit is contained in:
Alfred Kamanda 2025-01-06 14:50:39 +03:00
parent 4836162f40
commit 3ee15497a5
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -3,15 +3,17 @@ package initializers
import ( import (
"log" "log"
"os" "os"
"path"
"strconv" "strconv"
"github.com/joho/godotenv" "github.com/joho/godotenv"
) )
func LoadEnvVariables() { func LoadEnvVariables(baseDir string) {
err := godotenv.Load() envDir := path.Join(baseDir, ".env")
err := godotenv.Load(envDir)
if err != nil { if err != nil {
log.Fatal("Error loading .env file") log.Fatal("Error loading .env file", err)
} }
} }