-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathenv.example
More file actions
36 lines (29 loc) · 1.08 KB
/
env.example
File metadata and controls
36 lines (29 loc) · 1.08 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
# App URL
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Database
DATABASE_URL="postgresql://user:password@localhost:5432/database"
# Auth
BETTER_AUTH_SECRET="your-secret-key"
# OAuth Providers
GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_SECRET="your-github-client-secret"
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# R2 Storage
R2_BUCKET_NAME="your-bucket-name"
R2_ACCESS_KEY_ID="your-access-key-id"
R2_SECRET_ACCESS_KEY="your-secret-access-key"
R2_ENDPOINT="https://your-account-id.r2.cloudflarestorage.com"
R2_PUBLIC_URL="https://your-domain.com"
# Stripe Payment
STRIPE_SECRET_KEY="sk_test_your_stripe_secret_key"
STRIPE_WEBHOOK_SECRET="whsec_your_webhook_secret"
NEXT_PUBLIC_STRIPE_PRICE_PRO_MONTHLY="price_xxx"
NEXT_PUBLIC_STRIPE_PRICE_PRO_YEARLY="price_xxx"
NEXT_PUBLIC_STRIPE_PRICE_ENTERPRISE_MONTHLY="price_xxx"
NEXT_PUBLIC_STRIPE_PRICE_ENTERPRISE_YEARLY="price_xxx"
# Admin Configuration
# Comma-separated list of admin emails
ADMIN_EMAILS="admin@example.com,admin2@example.com"
# Theme Configuration
NEXT_PUBLIC_THEME="default"