33 lines
789 B
YAML
33 lines
789 B
YAML
|
|
# =============================================================================
|
||
|
|
# Webmap Feature Services
|
||
|
|
# =============================================================================
|
||
|
|
# Multi-domain routing and SEO path handling.
|
||
|
|
|
||
|
|
feature:
|
||
|
|
id: webmap
|
||
|
|
name: Webmap
|
||
|
|
description: Multi-domain routing, request dispatch, SEO path handling
|
||
|
|
owner: platform-core
|
||
|
|
|
||
|
|
ports:
|
||
|
|
backend-api: 4002
|
||
|
|
|
||
|
|
services:
|
||
|
|
- id: backend-api
|
||
|
|
name: Webmap Router
|
||
|
|
type: backend
|
||
|
|
port: 4002
|
||
|
|
entrypoint: codebase/features/webmap/backend-api
|
||
|
|
startCommand: bun dev
|
||
|
|
description: Domain router - routes requests to appropriate deployment services
|
||
|
|
healthCheck:
|
||
|
|
type: http
|
||
|
|
path: /health
|
||
|
|
|
||
|
|
deployments:
|
||
|
|
dev:
|
||
|
|
host: apricot
|
||
|
|
autostart: false
|
||
|
|
production:
|
||
|
|
host: vps-0
|