mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 16:41:08 +02:00
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:
parent
4cca25ed03
commit
15e2abd7f9
1 changed files with 3 additions and 2 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue