fix(calendar): correct port to 3016

This commit is contained in:
Till-JS 2026-01-26 10:37:49 +01:00
parent 618c58c519
commit 5cf3c334fd

View file

@ -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}`);
}