Files
dd0c/products/01-llm-cost-router/.env.example
Max Mayfield 311a834228 Add dd0c/route project scaffolding: migrations, docker-compose, README
- PostgreSQL schema: orgs, users, api_keys, provider_configs, routing_rules, cost_tables, feature_flags
- TimescaleDB schema: request_events hypertable, hourly/daily continuous aggregates, compression, retention
- docker-compose.yml: postgres, timescaledb, redis for local dev
- README with quick start, architecture overview, pricing tiers
- .env.example, .gitignore
2026-03-01 02:29:23 +00:00

14 lines
378 B
Plaintext

DATABASE_URL=postgres://dd0c:dd0c@localhost:5432/dd0c
TIMESCALE_URL=postgres://dd0c:dd0c@localhost:5433/dd0c_telemetry
REDIS_URL=redis://localhost:6379
JWT_SECRET=dev-secret-change-me-in-production
PROXY_PORT=8080
API_PORT=3000
AUTH_MODE=local
GOVERNANCE_MODE=audit
TELEMETRY_CHANNEL_SIZE=1000
# Provider keys (add yours)
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...