-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (23 loc) · 895 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (23 loc) · 895 Bytes
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
NODE_ENV=development
PORT=3000
DATABASE_URL=postgres://contextifly:contextifly@localhost:5432/contextifly
# Set true for managed Postgres that requires TLS (e.g. Azure). Auto-enabled
# when DATABASE_URL contains sslmode=require.
DATABASE_SSL=false
REDIS_URL=redis://localhost:6379
# Server-default LLM used when a request does not bring its own key.
# LLM_PROVIDER: gemini | openai | anthropic | openai-compatible
LLM_PROVIDER=gemini
LLM_API_KEY=
# Leave blank to use the provider's default model (gemini-2.0-flash,
# gpt-4o, claude-3-5-sonnet-latest). Required for openai-compatible.
LLM_MODEL=
# Base URL for an OpenAI-compatible endpoint (only used by openai-compatible),
# e.g. https://openrouter.ai/api/v1
LLM_BASE_URL=
# Deprecated aliases — still honoured when LLM_* are unset.
GEMINI_API_KEY=
GEMINI_MODEL=gemini-2.0-flash
UPLOAD_DIR=./uploads
MAX_UPLOAD_MB=10
QUEUE_CONCURRENCY=4