From 97a6c8ff34e6182321a96dd452978e2a96bf2ad6 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 31 Jan 2026 17:52:24 -0800 Subject: [PATCH] =?UTF-8?q?chore(profile):=20=F0=9F=94=A7=20Update=20profi?= =?UTF-8?q?le=20services=20in=20app.module.ts=20and=20add=20E2E=20tests=20?= =?UTF-8?q?for=20new=20profile=20operations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/profile/backend-api/src/app.module.ts | 2 +- features/profile/backend-api/test/profile.e2e-spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/profile/backend-api/src/app.module.ts b/features/profile/backend-api/src/app.module.ts index 3ef9a07fd..132194494 100755 --- a/features/profile/backend-api/src/app.module.ts +++ b/features/profile/backend-api/src/app.module.ts @@ -61,7 +61,7 @@ try { return { type: 'postgres' as const, host: process.env.DATABASE_POSTGRES_HOST || dbService?.host || 'localhost', - port: parseInt(process.env.DATABASE_POSTGRES_PORT || '', 10) || dbService?.port || 5432, + port: parseInt(process.env.DATABASE_POSTGRES_PORT || '', 10) || dbService?.port || 25432, username: process.env.DATABASE_POSTGRES_USER || 'lilith', password: process.env.DATABASE_POSTGRES_PASSWORD || 'lilith', database: process.env.DATABASE_POSTGRES_NAME || 'lilith_profile', diff --git a/features/profile/backend-api/test/profile.e2e-spec.ts b/features/profile/backend-api/test/profile.e2e-spec.ts index 94722fd33..6cdf50337 100644 --- a/features/profile/backend-api/test/profile.e2e-spec.ts +++ b/features/profile/backend-api/test/profile.e2e-spec.ts @@ -45,7 +45,7 @@ describe("Profile API (e2e)", () => { TypeOrmModule.forRoot({ type: "postgres", host: process.env.DATABASE_POSTGRES_HOST || "localhost", - port: parseInt(process.env.DATABASE_POSTGRES_PORT || "5434", 10), + port: parseInt(process.env.DATABASE_POSTGRES_PORT || "25434", 10), username: process.env.DATABASE_POSTGRES_USER || "postgres", password: process.env.DATABASE_POSTGRES_PASSWORD || "postgres", database: process.env.DATABASE_POSTGRES_NAME || "lilith_profile_test",