30 lines
847 B
Plaintext
30 lines
847 B
Plaintext
# MCP Server — port 4007
|
|
PORT=4007
|
|
HOST=0.0.0.0
|
|
LOG_LEVEL=info
|
|
|
|
# Upstream services
|
|
PLATFORM_SERVICE_URL=http://localhost:4003
|
|
EXTRACTION_SERVICE_URL=http://localhost:4005
|
|
|
|
# Product-specific backend URLs (Phase 3 product namespaces)
|
|
MINDLYST_BACKEND_URL=http://localhost:4014
|
|
LYSNRAI_BACKEND_URL=http://localhost:4015
|
|
JARVISJR_BACKEND_URL=http://localhost:4012
|
|
CHRONOMIND_BACKEND_URL=http://localhost:4011
|
|
NOMGAP_BACKEND_URL=http://localhost:4013
|
|
PEAKPULSE_BACKEND_URL=http://localhost:4010
|
|
|
|
# Auth — same JWT_SECRET as platform-service (tokens issued there are validated here)
|
|
JWT_SECRET=change-me-in-production
|
|
|
|
# Optional: restrict CORS origin (default: unrestricted — set in production)
|
|
CORS_ORIGIN=
|
|
|
|
# Query limits (defaults: max 100, page 20)
|
|
QUERY_MAX_LIMIT=100
|
|
QUERY_DEFAULT_LIMIT=20
|
|
|
|
# Optional: AKV resolution
|
|
AZURE_KEYVAULT_URL=
|