-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
49 lines (42 loc) · 1.71 KB
/
env.example
File metadata and controls
49 lines (42 loc) · 1.71 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
# =========================================
# SUPABASE
# Get from: https://supabase.com/dashboard/project/YOUR_PROJECT/settings/api
# =========================================
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key_here
# =========================================
# STRIPE
# Get from: https://dashboard.stripe.com/apikeys
# =========================================
STRIPE_SECRET_KEY=sk_live_your_key_here
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
# Subscription Price IDs (create in Stripe Dashboard → Products)
STRIPE_PRO_PRICE_ID_MONTHLY=price_pro_monthly
STRIPE_PRO_PRICE_ID_YEARLY=price_pro_yearly
STRIPE_AGENCY_PRICE_ID_MONTHLY=price_agency_monthly
STRIPE_AGENCY_PRICE_ID_YEARLY=price_agency_yearly
# Top-up Price IDs
STRIPE_TOPUP_20_PRICE_ID=price_topup_20
STRIPE_TOPUP_50_PRICE_ID=price_topup_50
STRIPE_TOPUP_100_PRICE_ID=price_topup_100
# =========================================
# GOOGLE AI (Gemini)
# Get from: https://aistudio.google.com/app/apikey
# =========================================
GEMINI_API_KEY=your_gemini_api_key_here
# =========================================
# RESEND (Email)
# Get from: https://resend.com/api-keys
# =========================================
RESEND_API_KEY=re_your_resend_api_key_here
# =========================================
# FACEBOOK CONVERSIONS API
# Get from: https://business.facebook.com/events_manager
# =========================================
FB_PIXEL_ID=your_pixel_id_here
FB_ACCESS_TOKEN=your_access_token_here
# =========================================
# APP
# =========================================
NEXT_PUBLIC_APP_URL=http://localhost:3000