-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1.03 KB
/
.env.example
File metadata and controls
29 lines (25 loc) · 1.03 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
# Environment variables for Vibe Stack
# Copy this file to .env.local and fill in your values
# ============================================
# SUPABASE (Required)
# Get these from: https://supabase.com/dashboard → Settings → API
# ============================================
NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
# ============================================
# STRIPE (Required for paid features)
# Get these from: https://dashboard.stripe.com/apikeys
# ============================================
STRIPE_SECRET_KEY=sk_test_xxx
STRIPE_WEBHOOK_SECRET=whsec_xxx
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_xxx
# ============================================
# RESEND (Email - Optional but recommended)
# Get from: https://resend.com/api-keys
# ============================================
RESEND_API_KEY=re_xxx
# ============================================
# APP CONFIG
# ============================================
NEXT_PUBLIC_APP_URL=http://localhost:3000
NODE_ENV=development