-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
32 lines (26 loc) · 2.31 KB
/
.env.local.example
File metadata and controls
32 lines (26 loc) · 2.31 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
# ──────────────────────────────────────────────────────────────────
# Poof — Environment Variables
# Copy this to .env.local and fill in your values.
# ──────────────────────────────────────────────────────────────────
# ─── Resend ───────────────────────────────────────────────────────
# Get from https://resend.com/api-keys
RESEND_API_KEY=re_xxxxxxxxxxxxxxxxxxxxxxxx
# ─── Your Domain ──────────────────────────────────────────────────
# Your verified domain in Resend. Once the main domain is verified,
# all inbound addresses (anything@yourdomain.com) work automatically.
# Set MX records in Resend → Domains → Add Domain → Inbound.
NEXT_PUBLIC_EMAIL_DOMAIN=yourdomain.com
# ─── Webhook Security ─────────────────────────────────────────────
# Optional: random secret configured in Resend inbound webhook settings.
# Leave blank to skip validation (not recommended in production).
WEBHOOK_SECRET=
# ─── App URL ──────────────────────────────────────────────────────
NEXT_PUBLIC_APP_URL=https://yourapp.com
# ─── Redis ────────────────────────────────────────────────────────
# Required for SSE pub/sub to work across multiple server instances.
# Use a Redis connection URL (local or hosted, e.g. Upstash).
REDIS_URL=redis://localhost:6379
# ─── GitHub Link (optional) ───────────────────────────────────────
# If set, a GitHub button appears in the header.
# Leave blank to hide it.
NEXT_PUBLIC_GITHUB_URL=https://github.com/yourusername/yourrepo