mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:01:08 +02:00
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) <noreply@anthropic.com>
This commit is contained in:
parent
1245fdc077
commit
2bd8f0babf
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue