From 5e9301c852196d370cd7ea0055c8f9a2dc8606a5 Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 26 Jan 2026 01:18:50 -0800 Subject: [PATCH] =?UTF-8?q?chore(webmap/router):=20=F0=9F=94=A7=20Add=20ro?= =?UTF-8?q?ute=20definitions=20and=20handlers=20for=20new=20webmap=20views?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/webmap/router/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/webmap/router/src/main.ts b/features/webmap/router/src/main.ts index 69ebe5029..ad668fc61 100755 --- a/features/webmap/router/src/main.ts +++ b/features/webmap/router/src/main.ts @@ -10,7 +10,7 @@ import { HealthStatus, type HealthResponse } from '@lilith/nestjs-health'; import { DeploymentResolver } from './services/deployment-resolver'; import { ConfigInjector } from './services/config-injector'; -const PORT = parseInt(process.env.WEBMAP_PORT || '4002', 10); +const PORT = parseInt(process.env.PORT || process.env.WEBMAP_PORT || '3050', 10); const HOST = process.env.WEBMAP_HOST || '0.0.0.0'; const APPS_BUILD_DIR = process.env.APPS_BUILD_DIR || '/var/www/apps'; const VERSION = process.env.APP_VERSION || '1.0.0';