-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.env.example
More file actions
36 lines (28 loc) · 1.14 KB
/
Copy pathserver.env.example
File metadata and controls
36 lines (28 loc) · 1.14 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
# ─────────────────────────────────────────────────────────────────────
# server.env — Rust server runtime config
# Copy to server.env and fill in. NEVER commit this file.
# Used by: docker-compose.yml (prod service)
# ─────────────────────────────────────────────────────────────────────
PORT=
DIST_DIR=./dist
# Database (same values as infra.env LORA_DB_* )
DATABASE_URL=
# Redis
REDIS_URL=redis:
# Qdrant
QDRANT_URL=http:
QDRANT_API_KEY=change_me_qdrant_key
# MinIO / S3
STORAGE_ENDPOINT=
STORAGE_ACCESS_KEY=
STORAGE_SECRET_KEY=
STORAGE_BUCKET_DATASETS=
STORAGE_BUCKET_ADAPTERS=
STORAGE_BUCKET_CHECKPOINTS=
STORAGE_BUCKET_EXPORTS=
# LLM inference endpoint (Ollama / vLLM / Candle server)
LLM_ENDPOINT=http://localhost:11434
# HuggingFace token (for gated models: LLaMA 3, Gemma)
HF_TOKEN=
CORS_ORIGINS=*
RUST_LOG=info,lora_studio_server=debug