-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
38 lines (33 loc) · 2.01 KB
/
Copy path.env.local.example
File metadata and controls
38 lines (33 loc) · 2.01 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
# Backend API URL — used by email capture form on free-pack page
# In production: https://api.colorarchive.org
# In local dev: http://localhost:3001
NEXT_PUBLIC_API_URL=http://localhost:3001
# Frontend URL — used for checkout/billing return URLs (Lemon Squeezy + Apple IAP;
# Stripe is deprecated). In production: https://colorarchive.org · local: http://localhost:3000
FRONTEND_URL=http://localhost:3000
# Payment provider — selects the active checkout backend (see src/lib/checkout-config.ts).
# "lemonsqueezy" is the live Merchant-of-Record provider; "none" disables paid CTAs.
NEXT_PUBLIC_PAYMENT_PROVIDER=lemonsqueezy
# Lemon Squeezy hosted-checkout URL for the Accessibility Auditor pre-order.
# When set, /preorder shows a card pre-order button; when blank it falls back to the
# email-reservation form. When enabling, point its post-purchase redirect at
# /preorder?purchased=1 and add custom data pack_id=preorder-auditor (see docs/human-todo.md).
NEXT_PUBLIC_PREORDER_CHECKOUT_URL=
# Sentry — public DSN (safe to expose in browser bundle)
# Project: jason-yeyuhe/colorarchive-web (Next.js)
NEXT_PUBLIC_SENTRY_DSN=
# Server-side DSN (same value); read by Next.js server + edge runtimes.
SENTRY_DSN=
# Optional: set to "false" to disable Sentry even with DSN set.
SENTRY_ENABLED=
# Optional: auth token for source-map upload at build time. Only needed in CI / Vercel.
# Create at https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
SENTRY_AUTH_TOKEN=
# PostHog — product analytics (DAU / retention / conversion funnels). Web + iOS share
# event names. The Project API key (phc_…) is a PUBLISHABLE client key, safe to expose in
# the browser bundle exactly like the Sentry DSN above. Create a free project at
# https://posthog.com → Project Settings → "Project API Key".
# Leave NEXT_PUBLIC_POSTHOG_KEY blank to disable analytics entirely (the code no-ops).
NEXT_PUBLIC_POSTHOG_KEY=
# US Cloud: https://us.i.posthog.com · EU Cloud: https://eu.i.posthog.com
NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com