-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (19 loc) · 1.5 KB
/
Copy path.env.example
File metadata and controls
23 lines (19 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ─── Database (Supabase) ───────────────────────────────────────────────────────
# These are safe to prefix with VITE_ — they are the anon/publishable keys
VITE_SUPABASE_URL=https://your-project-id.supabase.co
VITE_SUPABASE_PUBLISHABLE_KEY=your-supabase-anon-key
VITE_SUPABASE_PROJECT_ID=your-project-id
# ─── Server-side Only (never prefix with VITE_) ────────────────────────────────
# ⚠️ These keys have admin privileges. They must NEVER be in client bundles.
# Set these as Vercel Environment Variables (never in .env.local for client).
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
SUPABASE_ANON_KEY=your-supabase-anon-key
# ─── API & Edge Functions ──────────────────────────────────────────────────────
# Used by Vercel Cron (keep-alive) to authenticate requests
CRON_SECRET=your-cron-secret-string
# ─── Stripe (optional — uncomment when integrating payments) ───────────────────
# STRIPE_SECRET_KEY=sk_test_...
# STRIPE_WEBHOOK_SECRET=whsec_...
# ─── Stripe Price IDs (set per environment) ────────────────────────────────────
# STRIPE_PRO_PRICE_ID=price_...
# STRIPE_TEAM_PRICE_ID=price_...