-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
64 lines (50 loc) · 1.64 KB
/
.env.example
File metadata and controls
64 lines (50 loc) · 1.64 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
61
62
63
64
# This file is for local development and should not be committed to version control.
# The values in this file are placeholders and should be replaced with your actual credentials.
# Service API URL
SERVICE_API_URL="https://api2.freecustom.email"
# JWT Secret
JWT_SECRET="generate_a_strong_secret"
# NextAuth Configuration
# You can generate a strong secret with: openssl rand -base64 32
AUTH_SECRET="generate_a_strong_secret"
AUTH_URL="http://localhost:3000"
AUTH_TRUST_HOST=true
# Internal API Key
INTERNAL_API_KEY="generate_a_strong_secret"
INTERNAL_API_SECRET="generate_a_strong_secret"
# Google OAuth Credentials
GOOGLE_CLIENT_ID="..."
GOOGLE_CLIENT_SECRET="..."
# GitHub OAuth Credentials
GITHUB_ID="..."
GITHUB_SECRET="..."
# Resend API Key
RESEND_API_KEY="..."
# Admin Email
ADMIN_EMAIL="your_email@example.com"
# Cloudflare Turnstile
NEXT_PUBLIC_TURNSTILE_SITE_KEY="0x4AAAAAA...AA"
TURNSTILE_SECRET_KEY="0x4AAAAAA...AA"
# DITBlogs (DishIs Technologies Blogs)
DITBLOGS_API_KEY="..."
DITBLOGS_WEBHOOK_SECRET="..."
# Paddle (Payment Provider)
# Set to "sandbox" for testing or "production" for live
NEXT_PUBLIC_PADDLE_ENV="sandbox"
NEXT_PUBLIC_PADDLE_CLIENT_TOKEN="..."
# Paddle Price IDs
PADDLE_PRICE_WEEKLY="..."
PADDLE_PRICE_MONTHLY_W_TRIAL="..."
PADDLE_PRICE_MONTHLY_W_NO_TRIAL="..."
PADDLE_PRICE_YEARLY="..."
PADDLE_PRICE_API_DEVELOPER="..."
PADDLE_PRICE_API_STARTUP="..."
PADDLE_PRICE_API_GROWTH="..."
PADDLE_PRICE_API_ENTERPRISE="..."
PADDLE_PRICE_CREDITS_STARTER="..."
PADDLE_PRICE_CREDITS_BUILDER="..."
PADDLE_PRICE_CREDITS_SCALE="..."
PADDLE_PRICE_CREDITS_PRO="..."
# Paddle Webhook Secret and API Key
PADDLE_WEBHOOK_SECRET="..."
PADDLE_API_KEY="..."