Migrated the Website service and library targets to use Persistence package with PostgreSQL instead.

This commit is contained in:
2026-08-05 01:26:26 +02:00
parent 3d27a27cb1
commit 9b4a780ea3
9 changed files with 27 additions and 26 deletions
@@ -39,7 +39,7 @@ struct HealthControllerTests {
driver: .inMemory,
logger: Logger(label: "test")
)
let fluent = service()
let fluent = try service()
do {
try await app(
@@ -70,7 +70,7 @@ struct HealthControllerTests {
// Port 1 on the loopback interface has nothing listening, so the probe's connection is refused
// immediately instead of timing out.
let service = Service(
driver: .mysql(
driver: .postgres(
.init(
host: "127.0.0.1",
port: 1,
@@ -83,7 +83,7 @@ struct HealthControllerTests {
),
logger: Logger(label: "test")
)
let fluent = service()
let fluent = try service()
do {
try await app(