-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
35 lines (28 loc) · 1.88 KB
/
Copy path.env.local.example
File metadata and controls
35 lines (28 loc) · 1.88 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
# ─────────────────────────────────────────────────────────────────────────────
# .env.local.example — copy to .env.local and fill in real values.
# NEVER commit .env.local to version control.
# ─────────────────────────────────────────────────────────────────────────────
# ── Frontend (Vite — must be prefixed VITE_) ──────────────────────────────────
# Supabase project URL (e.g. https://xxxxxxxxxxxxxxxxxxxx.supabase.co)
VITE_SUPABASE_URL=
# Supabase anon/public key (safe to expose in the browser)
VITE_SUPABASE_ANON_KEY=
# ── Backend (Vercel serverless functions) ─────────────────────────────────────
# Same Supabase project URL as above (server-side copy)
SUPABASE_URL=
# Supabase service-role key — has full DB access, NEVER expose to the browser
SUPABASE_SERVICE_ROLE=
# Zoho OAuth2 client credentials
# Create an app at https://api-console.zoho.com/
ZOHO_CLIENT_ID=
ZOHO_CLIENT_SECRET=
# Public base URL of this deployment (no trailing slash)
# e.g. https://www.signflow.ink or http://localhost:5173
PUBLIC_URL=
# ── Optional ──────────────────────────────────────────────────────────────────
# Stripe keys (required only if Stripe billing features are enabled)
# Redirect base URL used by Stripe checkout/portal success + cancel return URLs
APP_URL=
STRIPE_SECRET_KEY=
STRIPE_PRICE_ID=
STRIPE_WEBHOOK_SECRET=