-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
36 lines (29 loc) · 926 Bytes
/
env.example
File metadata and controls
36 lines (29 loc) · 926 Bytes
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
# App Config
LOG_LEVEL=DEBUG
PORT=8080
TIMEOUT=5
CACHE_MAX_AGE=3600 # Cache-Control max-age in seconds (default: 3600 / 1 hour)
# TMDB Config
TMDB_BASE_URL=https://api.themoviedb.org/3
TMDB_TIMEOUT=5
TMDB_ACCESS_TOKEN=
# UI Auth
MINI_MOVIE_UI_SECRET=
# Database Config
DATABASE_URL=postgres://mmdb_user:mmdb_password@localhost:5432/minimovie
# Enrichments Config
MAX_TMDB_FETCH_PER_REQUEST=10
# OpenTelemetry Metrics (Grafana Cloud)
OTEL_ENABLED=false # default disable for local
OTEL_SERVICE_NAME=minimovie-api
OTEL_EXPORTER_OTLP_ENDPOINT="https://otlp-gateway-prod-us-east-0.grafana.net/otlp"
OTEL_EXPORTER_OTLP_HEADERS="Authorization=Basic%20{TOKEN_HERE}" # Replace {TOKEN_HERE} with base-64 encoded instance_id:token
# SYNC_START_DATE=2025-01-01
# SYNC_END_DATE=2025-01-11
# Augur
ANTHROPIC_API_KEY=
AUGUR_MODEL=claude-sonnet-4-6
AUGUR_MAX_TOKENS=4096
AUGUR_MAX_RETRIES=1
AUGUR_MIN_CONFIDENCE=0.65
AUGUR_TIMEOUT=30