updated default credentials

This commit is contained in:
Annika Hannig 2022-11-10 10:04:25 +01:00
parent c484ff2a0b
commit 88ba3ac7e1

View File

@ -15,7 +15,7 @@ func ConnectTest() *pgxpool.Pool {
ctx := context.Background()
url := os.Getenv("ALICE_TEST_DB_URL")
if url == "" {
url = "postgres://postgres:postgres@localhost:5432/alice_test"
url = "postgres://alice:alice@localhost:5432/alice_test"
}
p, err := Connect(ctx, &config.PostgresConfig{
URL: url,