14 lines
348 B
Bash
14 lines
348 B
Bash
# Server
|
|
PORT=8080
|
|
HOST=0.0.0.0
|
|
|
|
# OpenRouter
|
|
OPENROUTER_API_KEY=sk-or-v1-your-key-here
|
|
OPENROUTER_MODEL=deepseek/deepseek-chat
|
|
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
|
|
|
|
# App
|
|
DATABASE_URL=sqlite:///./data/assistant.db
|
|
CORS_ORIGINS=http://localhost:5173,http://localhost:8080,http://localhost:3000
|
|
SYSTEM_PROMPT_PATH=./prompts/assistant.md
|