15 lines
287 B
Plaintext
15 lines
287 B
Plaintext
# 基础配置
|
|
APP_NAME="FilesReadSystem"
|
|
DEBUG=true
|
|
|
|
# 数据库
|
|
MONGODB_URL="mongodb://username:password@host:port"
|
|
REDIS_URL="redis://localhost:6379/0"
|
|
|
|
# 大模型 API
|
|
LLM_API_KEY=""
|
|
LLM_BASE_URL=""
|
|
|
|
# 文件存储配置
|
|
UPLOAD_DIR="./data/uploads"
|
|
MAX_UPLOAD_SIZE=104857600 # 100MB |