-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 1.28 KB
/
Copy path.env.example
File metadata and controls
43 lines (35 loc) · 1.28 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
# Optional environment overrides for app config.
# Provider/API key configuration is managed from the admin UI and stored in SQLite.
# Optional one-time bootstrap values (applied only when AI settings DB tables are empty):
# AI_API_KEY=sk-your-api-key-here
# AI_BASE_URL=https://api.openai.com/v1
# AI_MODEL=gpt-5
# AI_PROVIDER=openai
# AI_PROVIDER_ID=openai
# Data storage directory (optional)
LUCENTDOCS_DATA_DIR=./data
# Primary database backend (optional)
# MAIN_DB=sqlite
# Vector storage backend (optional)
# VECTOR_STORAGE=none
# Qdrant configuration (when VECTOR_STORAGE=qdrant)
# QDRANT_URL=http://127.0.0.1:6333
# QDRANT_API_KEY=
# QDRANT_COLLECTION_PREFIX=lucentdocs
# QDRANT_UPSERT_BATCH_SIZE=
# QDRANT_UPSERT_BATCH_CONCURRENCY=
# Authentication (optional)
# AUTH_ENABLED=true
# AUTH_BOOTSTRAP_ADMIN_EMAIL=admin@lucentdocs.local
# AUTH_BOOTSTRAP_ADMIN_NAME=Admin
# AUTH_BOOTSTRAP_ADMIN_PASSWORD=admin12345
# Server network binding (optional)
HOST=127.0.0.1
PORT=5677
# Import limits (optional)
# IMPORT_DOCUMENT_MAX_CHARS=500000
# IMPORT_BATCH_MAX_DOCUMENTS=50
# IMPORT_REQUEST_MAX_BYTES=10485760
# Yjs Configuration (optional)
YJS_PERSISTENCE_FLUSH_MS=2000 # Flush dirty docs to SQLite at this interval
YJS_VERSION_INTERVAL_MS=300000 # Auto version snapshot interval (5 min)