-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
62 lines (54 loc) · 1.46 KB
/
Copy path.env.example
File metadata and controls
62 lines (54 loc) · 1.46 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Snout server + web environment. Copy to .env and fill in locally.
# NEVER commit a real .env. The .env file is gitignored; this placeholder
# template with safe defaults is the only env file that belongs in the repo.
# Secret values are intentionally left blank. Fill them in your local .env only.
# ---- Runtime ----
NODE_ENV=development
PORT=8787
DATA_DIR=./data
TRUST_PROXY=loopback
# ---- Origins / URLs ----
WEB_ORIGIN=http://localhost:5173
APP_BASE_URL=http://localhost:5173
# Web dev-server proxy target (web/vite.config.js)
SERVER_URL=http://localhost:8787
VITE_DEMO=false
# ---- LLM provider ----
LLM_PROVIDER=anthropic
ANTHROPIC_API_KEY=
ANTHROPIC_MODEL=claude-sonnet-4-6
ANTHROPIC_BASE_URL=https://api.anthropic.com
# Generic / OpenAI-compatible fallback provider
LLM_BASE_URL=
LLM_API_KEY=
LLM_MODEL=
# ---- API auth ----
API_TOKEN=
API_VIEWER_TOKEN=
ALLOW_ANON=false
SESSION_SECRET=
TENANT_ID=default
# ---- OIDC (optional SSO) ----
OIDC_ISSUER=
OIDC_CLIENT_ID=
OIDC_CLIENT_SECRET=
OIDC_REDIRECT_URI=
OIDC_SCOPES=openid email profile
OIDC_ROLE_CLAIM=groups
OIDC_ADMIN_VALUE=
OIDC_TENANT_CLAIM=
# ---- Integrations (server-side secrets only; never expose in a client bundle) ----
SNOUT_WEBHOOK_SECRET=
SLACK_SIGNING_SECRET=
TEAMS_SECURITY_TOKEN=
OKTA_API_TOKEN=
# ---- Storage ----
DATABASE_URL=
# ---- Limits / behavior ----
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX=300
ASSESS_RATE_MAX=15
MAX_CONCURRENT_ASSESSMENTS=4
BODY_LIMIT=64kb
VERIFY_FINDINGS=false
SEED_DELAY_MS=3000