19 lines
469 B
Plaintext
19 lines
469 B
Plaintext
# LLM — OpenAI, DeepSeek, or any OpenAI-compatible endpoint
|
|
LLM_PROVIDER=deepseek
|
|
LLM_BASE_URL=
|
|
LLM_MODEL_NAME=deepseek-chat
|
|
LLM_API_KEY=replace_me
|
|
|
|
# Auth — set both values explicitly; never commit real values.
|
|
APP_ENV=development
|
|
JWT_SECRET=replace_with_a_random_secret_at_least_32_chars
|
|
BOOTSTRAP_ADMIN_PASSWORD=replace_with_a_strong_initial_password
|
|
|
|
# Storage root (relative to backend/)
|
|
DATA_DIR=./data
|
|
|
|
# App
|
|
FLASK_HOST=0.0.0.0
|
|
FLASK_PORT=5001
|
|
FLASK_DEBUG=1
|