-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (33 loc) · 2.64 KB
/
Copy path.env.example
File metadata and controls
41 lines (33 loc) · 2.64 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
# ─── Site ─────────────────────────────────────────────────────────────────────
# Your production URL — used in metadata, JSON-LD, sitemap, email links
# No trailing slash
NEXT_PUBLIC_SITE_URL=https://your-domain.com
# ─── Google Cloud (Vertex AI / Gemini) ─────────────────────────────────────────
# Your GCP project ID — visible in the Google Cloud Console top bar
GOOGLE_CLOUD_PROJECT_ID=your-gcp-project-id
GOOGLE_CLOUD_LOCATION=us-central1
# LOCAL DEVELOPMENT ONLY — path to your service account JSON file
GOOGLE_APPLICATION_CREDENTIALS=./service-account.json
# PRODUCTION / VERCEL ONLY — paste the entire service account JSON as one line
# Never commit the actual JSON value here — this is just a placeholder
GOOGLE_APPLICATION_CREDENTIALS_JSON={"type":"service_account","project_id":"..."}
# ─── Trigger.dev Background Queue ───────────────────────────────────────
# Get your keys at: https://cloud.trigger.dev/
TRIGGER_SECRET_KEY=tr_prd_...
NEXT_PUBLIC_TRIGGER_PUBLIC_KEY=pk_prd_...
# ─── Supabase (Image Storage) ──────────────────────────────────────────────────
# Found in: Supabase Dashboard → Project Settings → API
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_DEFAULT_KEY=your-anon-key-here
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
# ─── Photoroom (Background Removal) ────────────────────────────────────────────
# Get your API key at: https://www.photoroom.com/api
PHOTOROOM_API_KEY=your-photoroom-api-key-here
# ─── Resend (Email Gateway) ────────────────────────────────────────────────────
# Get your API key at: https://resend.com/api-keys
RESEND_API_KEY=re_your-resend-api-key-here
RESEND_FROM_DOMAIN=yourdomain.com
# ─── Security Secrets ──────────────────────────────────────────────────────────
# Random 32-byte secret used to sign download JWT tokens
# Generate with: openssl rand -base64 32
DOWNLOAD_SECRET=replace-with-output-of-openssl-rand-base64-32