2026-03-10 08:17:45 -04:00
|
|
|
# Database (shared PostgreSQL on CT 102)
|
|
|
|
|
DATABASE_URL="postgresql://echos_ocr:YOUR_PASSWORD@192.168.68.102:5432/echos_ocr"
|
|
|
|
|
|
2026-03-11 12:05:38 -04:00
|
|
|
# Vercel AI Gateway (routes to OpenAI, Google, Anthropic, etc.)
|
|
|
|
|
AI_GATEWAY_API_KEY=""
|
2026-03-11 10:24:15 -04:00
|
|
|
|
|
|
|
|
# Ollama (only needed if using Ollama as the AI provider)
|
2026-03-10 08:17:45 -04:00
|
|
|
OLLAMA_BASE_URL="http://192.168.68.108:11434"
|
|
|
|
|
|
|
|
|
|
# MinIO S3 Storage (CT 105)
|
|
|
|
|
MINIO_ENDPOINT="192.168.68.105"
|
|
|
|
|
MINIO_PORT="9000"
|
|
|
|
|
MINIO_ACCESS_KEY="minioadmin"
|
|
|
|
|
MINIO_SECRET_KEY="YOUR_MINIO_SECRET"
|
|
|
|
|
MINIO_BUCKET="echos-ocr"
|
|
|
|
|
|
|
|
|
|
# Folder Watch (optional, mount a host path into the container)
|
|
|
|
|
WATCH_DIR=""
|
2026-03-12 11:42:39 -04:00
|
|
|
|
|
|
|
|
# Authentik SSO (optional — user info comes from forward-auth headers automatically;
|
|
|
|
|
# these are only needed to enrich profiles with avatars via the Authentik API)
|
|
|
|
|
AUTHENTIK_URL="https://auth.stillwell.cloud"
|
|
|
|
|
AUTHENTIK_API_TOKEN=""
|