-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
23 lines (19 loc) · 901 Bytes
/
Copy pathenv.example
File metadata and controls
23 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Stripe Configuration
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key_here
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
# Optional: Cloudflare Pages deploy hook URL (Admin → Deploy live site, same as git push)
# BUILD_HOOK_URL=https://api.cloudflare.com/client/v4/pages/webhooks/deploy_hooks/...
# Optional: set to true only if Stripe product/price webhooks should trigger BUILD_HOOK_URL
# (default off — batch edits in /preview, then deploy manually)
# STRIPE_WEBHOOK_AUTO_DEPLOY=false
# Site Configuration
SITE_NAME="Bodega Cat"
SITE_DESCRIPTION="Your friendly neighborhood store"
SITE_URL="https://your-domain.com"
SITE_LOGO="/logo.png"
SITE_FAVICON="/favicon.ico"
# Optional: Custom theme colors (will override defaults)
# SITE_PRIMARY_COLOR="#3B82F6"
# SITE_SECONDARY_COLOR="#6B7280"
# SITE_ACCENT_COLOR="#F59E0B"