-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (31 loc) · 1.45 KB
/
Copy path.env.example
File metadata and controls
37 lines (31 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# =============================================================================
# Chat API Configuration (synced with Helm values)
# =============================================================================
# -----------------------------------------------------------------------------
# OpenRouter LLM
# -----------------------------------------------------------------------------
OPENROUTER_API_KEY=sk-or-v1-...
OPENROUTER_API_URL=https://openrouter.ai/api/v1/chat/completions
OPENROUTER_MODEL=anthropic/claude-sonnet-4
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
# SQLite (default for local dev)
DATABASE_URL=sqlite:///db.sqlite3
# PostgreSQL (production via PGO secret)
# DATABASE_URL=postgresql://user:pass@host:5432/chatdb
# -----------------------------------------------------------------------------
# OpenTelemetry
# -----------------------------------------------------------------------------
OTEL_SERVICE_NAME=chat-api
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
OTEL_TRACES_EXPORTER=otlp
OTEL_LOGS_EXPORTER=otlp
# Disable for local dev/testing
# OTEL_SDK_DISABLED=true
# -----------------------------------------------------------------------------
# Application
# -----------------------------------------------------------------------------
ENVIRONMENT=development
LOG_LEVEL=INFO