-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 1.12 KB
/
.env.example
File metadata and controls
26 lines (21 loc) · 1.12 KB
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
# Shared admin password. Required.
ADMIN_PASSWORD=change-me
# Cookie signing key. Required. Generate with: python -c "import secrets; print(secrets.token_urlsafe(48))"
SESSION_SECRET=change-me
# Survey storage location inside the container. Bound to ./data by docker-compose.
DATA_DIR=/data
# Self-hosted GGUF location. Admin places files here directly (no upload endpoint).
MODELS_DIR=/data/models
# Per-box LLM call timeout in seconds. The browser aborts inferBox if a
# single box takes longer than this; the box is then flagged for review
# rather than wedging the pipeline behind a stuck worker. Default 300 (5
# minutes). Raise this for very large models on slow hardware.
LLM_TIMEOUT_SECONDS=300
# Optional Umami analytics. Leave UMAMI_WEBSITE_ID empty to disable tracking entirely.
# Admin vs researcher traffic is distinguished by URL path (/admin* vs /) in the Umami UI.
# UMAMI_URL: self-hosted instance URL, e.g. https://analytics.example.com. Falls back to
# https://cloud.umami.is when empty.
UMAMI_URL=
UMAMI_WEBSITE_ID=
# Honor browser Do Not Track. Set to false to track even when DNT is enabled.
UMAMI_DO_NOT_TRACK=true