From 15e2abd7f9acc1250c861dc66285863179f57a7c Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 8 May 2026 14:31:03 +0200 Subject: [PATCH] =?UTF-8?q?fix(env):=20mana-events=20default=20port=203065?= =?UTF-8?q?=20=E2=86=92=203115?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- scripts/generate-env.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/generate-env.mjs b/scripts/generate-env.mjs index a3ac1b701..49c3e8a89 100644 --- a/scripts/generate-env.mjs +++ b/scripts/generate-env.mjs @@ -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', vars: { - PORT: (env) => env.MANA_EVENTS_PORT || '3065', + PORT: (env) => env.MANA_EVENTS_PORT || '3115', DATABASE_URL: (env) => env.MANA_EVENTS_DATABASE_URL || 'postgresql://mana:devpassword@localhost:5432/mana_platform',