18 lines
515 B
Text
18 lines
515 B
Text
|
|
# cache-rebuilder environment — copy to .env for local runs.
|
||
|
|
# Single source of truth for ports: ../../../infrastructure/.env.ports.
|
||
|
|
|
||
|
|
# Health endpoint (no public surface — this is a subscriber-only worker)
|
||
|
|
CACHE_REBUILDER_HEALTH_PORT=3824
|
||
|
|
|
||
|
|
# Redis (vps-0-local; same instance that platform-api publishes to)
|
||
|
|
REDIS_HOST=localhost
|
||
|
|
REDIS_PORT=26379
|
||
|
|
REDIS_CACHE_INVALIDATE_CHANNEL=platform.cache.invalidate
|
||
|
|
|
||
|
|
# Reconnect / failure policy
|
||
|
|
REDIS_RECONNECT_DELAY_MS=2000
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
LOG_LEVEL=info
|
||
|
|
NODE_ENV=development
|