From 2bd8f0babf73a3ae477a19e3d2a96ccf8b687842 Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 3 Apr 2026 11:54:07 +0200 Subject: [PATCH] fix: change unified API default port from 3050 to 3060 Port 3050 is used by mana-sync. The unified API server gets its own port. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index f15ed23ec..1273e1ce0 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -32,7 +32,7 @@ import { newsRoutes } from './modules/news/routes'; import { tracesRoutes } from './modules/traces/routes'; import { presiRoutes } from './modules/presi/routes'; -const PORT = parseInt(process.env.PORT || '3050', 10); +const PORT = parseInt(process.env.PORT || '3060', 10); const CORS_ORIGINS = (process.env.CORS_ORIGINS || 'http://localhost:5173').split(','); const app = new Hono();