chore(webmap/router): 🔧 Add route definitions and handlers for new webmap views

This commit is contained in:
Lilith 2026-01-26 01:18:50 -08:00
parent 1cd43b33ec
commit 5e9301c852

View file

@ -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';