-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
25 lines (19 loc) · 855 Bytes
/
example.env
File metadata and controls
25 lines (19 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# --- Database ---
# Local example:
# DATABASE_URL=postgresql+asyncpg://books:books@localhost:5432/books
DATABASE_URL=postgresql+asyncpg://books:books@localhost:5432/books
# --- Bedrock ---
# Option A: API key / bearer token (no SigV4). Keep the real value in .env (gitignored) or k8s Secrets.
AWS_BEARER_TOKEN_BEDROCK=
# Option B: SigV4 (standard AWS auth). If you're using this, set these in your environment (or in k8s Secrets).
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# AWS_SESSION_TOKEN=
BEDROCK_REGION=us-west-2
BEDROCK_MODEL_ID=mistral.mistral-large-2402-v1:0
BEDROCK_TIMEOUT_SECONDS=15.0
# --- OpenTelemetry / OpenLLMetry ---
# In k8s, this should point at the groundcover sensor service.
OTEL_EXPORTER_OTLP_ENDPOINT=groundcover-sensor.groundcover.svc.cluster.local:4317
OTEL_EXPORTER_OTLP_INSECURE=true
OTEL_SERVICE_NAME=books-ai-api