diff --git a/main.go b/main.go index 43a4d8d..c584887 100644 --- a/main.go +++ b/main.go @@ -13,8 +13,10 @@ import ( ) func main() { + // Retrieve database connection information from environment variables - dsn := os.Getenv("DB_DSN") + dsn := os.Getenv("BAZA") + log.Println(dsn) // Connect to the database db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})