26 lines
995 B
Text
26 lines
995 B
Text
|
|
# =============================================================================
|
||
|
|
# @analytics Dev Environment
|
||
|
|
# =============================================================================
|
||
|
|
# Copy to infrastructure/.env.dev — used by ./run dev* commands.
|
||
|
|
# Matches docker-compose.dev.yaml credentials and platform-analytics backend.
|
||
|
|
# =============================================================================
|
||
|
|
|
||
|
|
# TimescaleDB (matches docker-compose.dev.yaml)
|
||
|
|
DATABASE_HOST=localhost
|
||
|
|
DATABASE_PORT=25434
|
||
|
|
DATABASE_USER=lilith
|
||
|
|
DATABASE_PASSWORD=analytics_dev_password
|
||
|
|
DATABASE_NAME=lilith_analytics
|
||
|
|
|
||
|
|
# Redis (matches docker-compose.dev.yaml — port 26379 per infrastructure.yaml service registry)
|
||
|
|
REDIS_HOST=localhost
|
||
|
|
REDIS_PORT=26379
|
||
|
|
REDIS_PASSWORD=analytics_dev_password
|
||
|
|
|
||
|
|
# Collector
|
||
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:5120,http://localhost:5173,https://quinn.apricot.local
|
||
|
|
COLLECTOR_WRITE_KEY=dev-write-key
|
||
|
|
|
||
|
|
# API authentication keys (comma-separated)
|
||
|
|
API_KEYS=dev-api-key
|