From e2445c086994d6bb02d4c5e8d49298e88582905c Mon Sep 17 00:00:00 2001 From: Prajapati-ankit Date: Sun, 14 Sep 2025 15:11:43 +0530 Subject: [PATCH] chore: update dependencies and improve configuration checks Setting a fixed port ensures that the expected network topology behaves as documented. --- apps/backend/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/main.ts b/apps/backend/src/main.ts index 6b2a9acd4..e0f63ffd8 100644 --- a/apps/backend/src/main.ts +++ b/apps/backend/src/main.ts @@ -44,7 +44,7 @@ async function bootstrap() { loadSwagger(app); - const port = process.env.PORT || 3000; + const port = 3000; try { await app.listen(port);