-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
44 lines (34 loc) · 1.48 KB
/
.env.example
File metadata and controls
44 lines (34 loc) · 1.48 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
# =============================================================================
# Unicon Environment Variables
# Copy this file to .env.local and fill in the values
# =============================================================================
# Supabase (Required)
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
# Site URL (Required)
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Turso Database (Required)
TURSO_DATABASE_URL=libsql://your-database.turso.io
TURSO_AUTH_TOKEN=your-auth-token
# AI / Embeddings (at least one required)
OPENAI_API_KEY=sk-your-openai-api-key
AI_GATEWAY_API_KEY=vck_your-vercel-ai-gateway-key
# Anthropic Claude (Optional - enables AI query expansion)
ANTHROPIC_API_KEY=your-anthropic-api-key
# Stripe (Required for payments)
STRIPE_SECRET_KEY=sk_test_your-stripe-secret-key
STRIPE_WEBHOOK_SECRET=whsec_your-webhook-secret
NEXT_PUBLIC_STRIPE_PRICE_ID=price_your-price-id
# Upstash Redis / Vercel KV (Required for rate limiting)
KV_REST_API_URL=https://your-kv.upstash.io
KV_REST_API_TOKEN=your-kv-token
# Resend (Optional - for team invite emails)
RESEND_API_KEY=re_your-resend-api-key
# Admin (Optional - protects admin routes)
ADMIN_SECRET=your-secret-for-admin-routes
# Sentry (Optional - error monitoring)
NEXT_PUBLIC_SENTRY_DSN=https://your-dsn@sentry.io/your-project-id
SENTRY_ORG=your-sentry-org
SENTRY_PROJECT=your-sentry-project
SENTRY_AUTH_TOKEN=your-sentry-auth-token