-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 719 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (27 loc) · 719 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
28
29
30
31
32
33
# PostgreSQL
POSTGRES_DB=bundle
POSTGRES_USER=bundle
POSTGRES_PASSWORD=bundle_dev
POSTGRES_HOST=localhost
POSTGRES_PORT=5433
# Application
DATABASE_URL=postgresql://bundle:bundle_dev@localhost:5433/bundle?sslmode=disable
JWT_SECRET=GENERATE-WITH: python -c "import secrets; print(secrets.token_urlsafe(48))"
JWT_ACCESS_TTL_MINUTES=15
JWT_REFRESH_TTL_DAYS=7
BCRYPT_COST=12
LOG_LEVEL=INFO
# Storage
ARTIFACTS_PATH=./data/artifacts
# Connection pool
DB_POOL_MIN_SIZE=2
DB_POOL_MAX_SIZE=10
# LLM (NVIDIA NIM)
NVIDIA_API_KEY=
NIM_LLM_MODEL=moonshotai/kimi-k2.6
NIM_EMBEDDING_MODEL=nvidia/nv-embedqa-e5-v5
# Processing
MAX_PROCESSING_ATTEMPTS=3
PROCESSING_POLL_INTERVAL_SECONDS=5
# Observability (optional)
SENTRY_DSN=