-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 1.13 KB
/
.env.example
File metadata and controls
29 lines (24 loc) · 1.13 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
# Local Development Environment Variables
# Copy this file to .env and fill in your values
# Stripe Keys (for local Hugo development with Stripe)
# Get these from: Stripe Dashboard (Test Mode) → Developers → API Keys
# Hugo templates read these via {{ os.Getenv "STRIPE_PUBLISHABLE_KEY" }}
STRIPE_PUBLISHABLE_KEY=pk_test_...
STRIPE_PRICING_TABLE_ID=prctbl_test_...
# Stripe Visibility Key (optional, controls pricing table visibility via query param)
# When set, pricing table only shows with ?key=<value> query parameter
# Leave unset to always show pricing table when Stripe env vars are present
STRIPE_VISIBILITY_KEY=your-secret-key-here
# Usage:
# export STRIPE_PUBLISHABLE_KEY=pk_test_...
# export STRIPE_PRICING_TABLE_ID=prctbl_test_...
# export STRIPE_VISIBILITY_KEY=your-secret-key-here
# cd hugo && hugo server
#
# Or use direnv to auto-load .env
# Note: These are publishable keys (safe to expose in HTML)
# Secret keys (sk_test_...) should ONLY go in functions/.env.local
# ImageKit (profile image CDN)
# Get these from: ImageKit Dashboard → Developer Options
IMAGEKIT_PUBLIC_KEY=public_...
IMAGEKIT_PRIVATE_KEY=private_...