-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 1.41 KB
/
Copy path.env.example
File metadata and controls
31 lines (26 loc) · 1.41 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
# ── Core ─────────────────────────────────────────────────────────
# dev = no auth required (local), clerk = verify Clerk JWTs
AUTH_MODE=dev
ENVIRONMENT=development
# ── LLM (Groq) ───────────────────────────────────────────────────
# https://console.groq.com/keys
GROQ_API_KEY=
GROQ_MODEL=llama-3.3-70b-versatile
# ── Local services (docker-compose defaults — leave as-is for dev)
DATABASE_URL=postgresql+asyncpg://corpora:corpora@localhost:5432/corpora
REDIS_URL=redis://localhost:6379/0
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY=
# ── Clerk (needed when AUTH_MODE=clerk) ──────────────────────────
# https://dashboard.clerk.com → API Keys
CLERK_SECRET_KEY=
CLERK_PUBLISHABLE_KEY=
CLERK_JWKS_URL=
# ── Langfuse (P5 — optional until then) ──────────────────────────
# https://cloud.langfuse.com → Settings → API Keys
LANGFUSE_PUBLIC_KEY=
LANGFUSE_SECRET_KEY=
LANGFUSE_HOST=https://cloud.langfuse.com
# ── Production stores (P6 deploy — leave empty for local dev) ────
# Neon: postgresql+asyncpg://... Qdrant Cloud: https://...:6333 + key
# Upstash: rediss://...