-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
60 lines (46 loc) · 2.23 KB
/
.env.example
File metadata and controls
60 lines (46 loc) · 2.23 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
# ===========================================
# DocsFlow - Environment Variables
# ===========================================
# Copy this file to .env.local and fill in your values
# ── Supabase ──────────────────────────────
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# ── Clerk Authentication ──────────────────
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_...
CLERK_SECRET_KEY=sk_test_...
NEXT_PUBLIC_USE_CLERK=true
# ── OpenAI (Embeddings) ──────────────────
OPENAI_API_KEY=sk-...
# ── OpenRouter (LLM Generation) ──────────
OPENROUTER_API_KEY=sk-or-...
# ── Google AI (Primary LLM) ─────────────
GOOGLE_GENERATIVE_AI_API_KEY=AIza...
# ── Pinecone (Vector Storage) ────────────
PINECONE_API_KEY=your-pinecone-key
PINECONE_INDEX=your-index-name
# ── Stripe (Billing) ────────────────────
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_...
# ── Vercel ───────────────────────────────
CRON_SECRET=your-cron-secret
VERCEL_URL=your-app.vercel.app
# ── App Configuration ───────────────────
NEXT_PUBLIC_APP_URL=http://localhost:3000
# ── Optional: LangSmith Tracing ─────────
# LANGCHAIN_TRACING_V2=true
# LANGCHAIN_PROJECT=docsflow
# LANGCHAIN_API_KEY=ls__...
# ── Optional: AI Gateway ────────────────
# AI_GATEWAY_API_KEY=your-gateway-key
# ── Optional: Queue Worker Config ───────
# WORKER_GLOBAL_MAX=10
# WORKER_PER_TENANT_MAX=2
# WORKER_STALE_TIMEOUT=5
# ── Optional: RAG Cache ────────────────
# RAG_CACHE_ENABLED=true
# RAG_CACHE_TTL=300
# ── Admin ───────────────────────────────
# ADMIN_AUTH_USERNAME=admin
# ADMIN_AUTH_PASSWORD=your-password