-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 784 Bytes
/
.env.example
File metadata and controls
35 lines (27 loc) · 784 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
# ============================================
# Sortex.AI Environment Configuration
# ============================================
# --- PostgreSQL ---
POSTGRES_USER=sortex
POSTGRES_PASSWORD=
POSTGRES_DB=sortex
# --- MinIO (S3-compatible storage) ---
MINIO_ACCESS_KEY=
MINIO_SECRET_KEY=
MINIO_BUCKET_NAME=documents
# --- Authentication ---
JWT_SECRET_KEY=
# --- LLM Provider ---
# Options: ollama | openai
DEFAULT_LLM_PROVIDER=ollama
OLLAMA_BASE_URL=http://host.docker.internal:11434
OLLAMA_MODEL=qwen2.5:3b
# Only required if DEFAULT_LLM_PROVIDER=openai
OPENAI_API_KEY=
# --- OCR ---
DEFAULT_OCR_PROVIDER=paddleocr
# --- CORS ---
# Comma-separated origins allowed to call the API
CORS_ORIGINS=http://localhost:3000
# --- Frontend ---
REACT_APP_API_URL=http://localhost:8000