From 5c44a1a1a1182122b483acae79f3190fce046869 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 9 Jan 2026 10:54:49 -0800 Subject: [PATCH] fix: conversation-service use PORT env variable instead of CONVERSATION_SERVICE_PORT Co-Authored-By: Claude Opus 4.5 --- packages/services/conversation-service/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/services/conversation-service/src/main.ts b/packages/services/conversation-service/src/main.ts index f93c552..b2df125 100644 --- a/packages/services/conversation-service/src/main.ts +++ b/packages/services/conversation-service/src/main.ts @@ -25,7 +25,7 @@ async function bootstrap() { app.setGlobalPrefix('api/v1'); const configService = app.get(ConfigService); - const port = configService.get('CONVERSATION_SERVICE_PORT') || 3002; + const port = configService.get('PORT') || 3004; await app.listen(port); console.log(`Conversation Service is running on port ${port}`);