-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
52 lines (39 loc) · 1.38 KB
/
Copy path.env.example
File metadata and controls
52 lines (39 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# ===========================================
# Outline-LLM Configuration
# ===========================================
# Outline API Configuration
OUTLINE_API_URL=https://app.getoutline.com
OUTLINE_API_TOKEN=your_outline_api_token_here
# Sync Configuration
SYNC_INTERVAL_MINUTES=15
# LLM Configuration (supports OpenAI, Anthropic, etc via LiteLLM)
LLM_PROVIDER=openai
LLM_MODEL=gpt-4o-mini
OPENAI_API_KEY=your_openai_api_key_here
# Embedding Configuration
EMBEDDING_MODEL=text-embedding-3-small
# ===========================================
# Application Settings
# ===========================================
# API Server
API_HOST=0.0.0.0
API_PORT=8000
# CORS - comma-separated origins, use * for all (dev only)
# For production, set to your actual domain(s)
# Example: https://docs.example.com,https://app.example.com
CORS_ORIGINS=*
# ===========================================
# Frontend Settings
# ===========================================
# API URL for frontend (leave empty to use same-origin proxy)
# Set this for cross-origin deployments, e.g., https://api.example.com
VITE_API_URL=
# Web server port (Docker)
WEB_PORT=3000
# ===========================================
# Storage (auto-configured in Docker)
# ===========================================
# ChromaDB persistence directory
CHROMA_PERSIST_DIR=./data/chroma
# SQLite database path (sync state)
SQLITE_DB_PATH=./data/sync_state.db