-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
49 lines (38 loc) · 1.86 KB
/
Copy path.env.example
File metadata and controls
49 lines (38 loc) · 1.86 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
# ===========================================
# Frontend Environment Variables (Next.js)
# ===========================================
# Variables prefixed with NEXT_PUBLIC_ are exposed to client-side code.
# Supabase Configuration
NEXT_PUBLIC_SUPABASE_URL=https://your-project-id.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key-here
# Site Configuration
SITE_URL=http://localhost:3000
# Admin Dashboard Configuration
ADMIN_EMAIL=admin@example.com
# ===========================================
# Backend Environment Variables (Edge Functions)
# ===========================================
# These are automatically configured in Supabase Edge Functions
# Supabase Configuration
SUPABASE_URL=https://your-project-id.supabase.co
SUPABASE_ANON_KEY=your-supabase-anon-key-here
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key-here
# Server-only legacy anon JWT (eyJ...) used by the Next.js /api/fn proxy to call
# Supabase Edge Functions (their gateway's verify_jwt requires a real JWT, which the
# new sb_publishable_ key is not). NOT prefixed NEXT_PUBLIC_ — must stay server-side.
SUPABASE_EDGE_ANON_JWT=your-legacy-anon-jwt-here
# Site URL (for generating links in emails)
SITE_URL=http://localhost:3000
# OpenAI API Key (for AI-powered features)
OPENAI_API_KEY=sk-proj-your-openai-api-key-here
# Stripe Configuration (for paid listing tiers)
STRIPE_SECRET_KEY=sk_test_your-stripe-secret-key-here
STRIPE_WEBHOOK_SECRET=whsec_your-stripe-webhook-secret-here
# Resend Configuration (required for admin notifications and user emails)
# Get your API key from https://resend.com/api-keys
# RESEND_DOMAIN is the verified sending domain (defaults to saasrow.com if unset)
RESEND_API_KEY=re_your-resend-api-key-here
RESEND_DOMAIN=saasrow.com
ADMIN_EMAIL=admin@example.com
# Screenshot Service (for generating screenshots)
GETSCREENSHOT_API_KEY=your-getscreenshot-api-key-here