Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Postgres and MySQL databases support #335

Merged
merged 12 commits into from
Sep 20, 2024
Prev Previous commit
Next Next commit
Fix pg login test
  • Loading branch information
thomiceli committed Sep 17, 2024
commit 8a1b79508dd33432f324e1c79889814d9171c25d
2 changes: 1 addition & 1 deletion internal/web/test/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func setup(t *testing.T) {
case "sqlite":
databaseDsn = "file::memory:"
case "postgres":
databaseDsn = "postgres://root:opengist@localhost:5432/opengist_test"
databaseDsn = "postgres://postgres:opengist@localhost:5432/opengist_test"
case "mysql":
databaseDsn = "mysql://root:opengist@localhost:3306/opengist_test"
}
Expand Down
Loading