Clean successor to V3 (forge: lilith/atlilith). Seeded from local Mac working tree at ~/Code/@projects/@cocottetech/. node_modules and build artifacts excluded via .gitignore. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
26 lines
683 B
Text
26 lines
683 B
Text
# platform.api environment — copy to .env for local runs.
|
|
# Port values come from infrastructure/.env.ports (single source of truth).
|
|
|
|
# HTTP
|
|
PLATFORM_API_PORT=3060
|
|
|
|
# Postgres (platform.db on black:25437)
|
|
PLATFORM_DB_HOST=black.lan
|
|
PLATFORM_DB_PORT=25437
|
|
PLATFORM_DB_NAME=platform
|
|
PLATFORM_DB_USER=platform
|
|
PLATFORM_DB_PASSWORD=changeme
|
|
PLATFORM_DB_SSL=false
|
|
|
|
# Redis (cache-invalidate pub/sub on vps-0)
|
|
REDIS_HOST=vps-0.lan
|
|
REDIS_PORT=26379
|
|
REDIS_CACHE_INVALIDATE_CHANNEL=platform.cache.invalidate
|
|
|
|
# Auth (federate v2 quinn.sso initially)
|
|
QUINN_SSO_URL=https://quinn.sso/
|
|
QUINN_SSO_JWKS_URL=https://quinn.sso/.well-known/jwks.json
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
NODE_ENV=development
|