From 701b27cf3f096f556e56cd154c53f0c9a2f30046 Mon Sep 17 00:00:00 2001 From: aewing Date: Wed, 31 Dec 2025 03:44:28 +0000 Subject: [PATCH] Update port to 3020 --- server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.ts b/server.ts index f116acf..87fd8a2 100644 --- a/server.ts +++ b/server.ts @@ -1109,7 +1109,7 @@ app.post('/api/test-teams-webhook', async (c) => { return c.json({ success: ok, status: resp.status, body: text }); }); -const PORT = Number(process.env.PORT || 4000); +const PORT = Number(process.env.PORT || 3020); console.log(`Job Creation with Excel Sync server running at http://localhost:${PORT}`);