From 5cf3c334fdd4dcf0381f6b5a685b1e974045b71a Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:37:49 +0100 Subject: [PATCH] fix(calendar): correct port to 3016 --- apps/calendar/apps/backend/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/calendar/apps/backend/src/main.ts b/apps/calendar/apps/backend/src/main.ts index 7cf6f2ece..cca374b4e 100644 --- a/apps/calendar/apps/backend/src/main.ts +++ b/apps/calendar/apps/backend/src/main.ts @@ -73,7 +73,7 @@ async function bootstrap() { exclude: ['metrics', 'health'], }); - const port = process.env.PORT || 3014; + const port = process.env.PORT || 3016; await app.listen(port); console.log(`Calendar backend running on http://localhost:${port}`); }