-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (31 loc) · 1.19 KB
/
.env.example
File metadata and controls
39 lines (31 loc) · 1.19 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
# Neon PostgreSQL — get these from your Neon project dashboard
# Use the "pooled" connection string for DATABASE_URL (used at runtime)
DATABASE_URL="postgresql://user:password@host/dbname?sslmode=require"
# NextAuth — generate AUTH_SECRET with: npx auth secret
AUTH_SECRET=""
AUTH_GITHUB_ID=""
AUTH_GITHUB_SECRET=""
# Email verification — set to "true" to require email verification on register.
# Defaults to false in development, true in production (when this var is unset).
EMAIL_VERIFICATION_ENABLED="false"
# Resend — for transactional emails (verification, password reset)
RESEND_API_KEY=""
# Upstash Redis — for rate limiting (optional, fail-open if unset)
UPSTASH_REDIS_REST_URL=""
UPSTASH_REDIS_REST_TOKEN=""
# Cloudflare R2 Storage — for file/image uploads (Pro)
R2_ACCOUNT_ID=""
R2_ACCESS_KEY_ID=""
R2_SECRET_ACCESS_KEY=""
R2_BUCKET_NAME=""
R2_PUBLIC_URL=""
# Stripe — subscriptions and payments
STRIPE_SECRET_KEY=""
STRIPE_PUBLISHABLE_KEY=""
STRIPE_WEBHOOK_SECRET=""
STRIPE_PRICE_ID_MONTHLY=""
STRIPE_PRICE_ID_YEARLY=""
# Pro feature gating — set to "true" before launch. Defaults to false in development.
IS_PRO_ENABLED="false"
# OpenRouter API key for AI features
OPENROUTER_API_KEY=""