fix(env): mana-events default port 3065 → 3115

Completes the migration documented in docs/PORT_SCHEMA.md:29-30
("moved from 3065 on 2026-05-06 because the platform mana-media
reserves 3065"). services/mana-events/src/config.ts already
defaults to 3115 — generate-env.mjs was the last file still
emitting the old value, so anyone running pnpm setup:env would
get a .env that pinned the service back to 3065 and collided
with mana-media on the platform.
This commit is contained in:
Till JS 2026-05-08 14:31:03 +02:00
parent 4cca25ed03
commit 15e2abd7f9

View file

@ -137,11 +137,12 @@ const APP_CONFIGS = [
}, },
}, },
// Mana Events Service (Hono + Bun, Port 3065) // Mana Events Service (Hono + Bun, Port 3115 — moved from 3065 on
// 2026-05-06 because the platform mana-media owns 3065)
{ {
path: 'services/mana-events/.env', path: 'services/mana-events/.env',
vars: { vars: {
PORT: (env) => env.MANA_EVENTS_PORT || '3065', PORT: (env) => env.MANA_EVENTS_PORT || '3115',
DATABASE_URL: (env) => DATABASE_URL: (env) =>
env.MANA_EVENTS_DATABASE_URL || env.MANA_EVENTS_DATABASE_URL ||
'postgresql://mana:devpassword@localhost:5432/mana_platform', 'postgresql://mana:devpassword@localhost:5432/mana_platform',