removed testing comment

This commit is contained in:
Cipher Vance 2025-09-18 21:03:49 -05:00
parent 7620a938f5
commit afd12684b6

View file

@ -17,7 +17,6 @@ func InitDB() *gorm.DB {
user := os.Getenv("PG_USER")
password := os.Getenv("PG_PASSWORD")
// Try with quoted password
dsn := fmt.Sprintf(`host=%s port=%s user=%s password='%s' dbname=%s sslmode=disable`,
host, port, user, password, database)