-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (47 loc) · 1.63 KB
/
.env.example
File metadata and controls
57 lines (47 loc) · 1.63 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
# Environment Variables Example
# Copy this to .env and fill in your values
# ===================
# DATABASE (Required)
# ===================
# Runtime connection string. Use the pooled Neon hostname here when available.
DATABASE_URL="postgresql://username:password@your-project-pooler.region.aws.neon.tech/neondb?sslmode=require"
# Direct connection used by Prisma CLI for migrate/db push/db pull/resolve.
DIRECT_URL="postgresql://username:password@your-project.region.aws.neon.tech/neondb?sslmode=require"
# ===================
# AUTH (Required)
# ===================
# Generate with: openssl rand -base64 32
NEXTAUTH_SECRET="your-super-secret-key-generate-with-openssl"
NEXTAUTH_URL="https://your-domain.vercel.app"
# Discord OAuth2 - Get from https://discord.com/developers/applications
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
# ===================
# PAYMENT GATEWAYS (Optional)
# ===================
# Payku (Chilean payment processor)
PAYKU_API_TOKEN=""
# Optional when Payku is configured from environment variables.
# Allowed values: sandbox | production
PAYKU_ENV="sandbox"
# Tebex
TEBEX_STORE_ID=""
TEBEX_SECRET_KEY=""
# PayPal
PAYPAL_CLIENT_ID=""
PAYPAL_CLIENT_SECRET=""
PAYPAL_WEBHOOK_ID=""
# Optional values: sandbox | production
PAYPAL_ENV="sandbox"
# ===================
# LICENSE SYSTEM (Required)
# ===================
# HMAC secret for license key generation
PAPER_LICENSE_SECRET="your-hmac-secret-key"
# Fallback user email for API-generated licenses
LICENSE_SYSTEM_USER_EMAIL="admin@yourdomain.com"
# ===================
# BLOB STORAGE (Required)
# ===================
# Vercel Blob storage
BLOB_READ_WRITE_TOKEN="vercel_blob_rw_..."