-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env
36 lines (27 loc) · 1.23 KB
/
.env
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
# App name
NEXT_PUBLIC_APP_NAME="Next.js 10 Template"
# Base url of this project. Use `.env.local` to override.
NEXT_PUBLIC_BASE_URL="https://nextjs-10-template.vercel.app"
# Comma separated domains that are allowed to access /api/unfurl endpoint
UNFURL_ALLOW_ORIGINS="localhost"
# Fathom configs. Use `.env.local` to override.
NEXT_PUBLIC_FATHOM_SITE_ID="some-site-id"
NEXT_PUBLIC_FATHOM_INCLUDED_DOMAINS="example.com,blog.example.com"
# Adjust this url if using Fathom custom domain
NEXT_PUBLIC_FATHOM_URL="https://cdn.usefathom.com/script.js"
# Optional public analytic that will be exposed via `/analytic` redirect. Leave empty to disable.
NEXT_PUBLIC_SHARE_ANALYTIC=""
NEXT_PUBLIC_GITHUB_REPO="https://github.com/wzulfikar/nextjs-10"
# Stripe config for https://github.com/ynnoj/next-stripe.
# Use `.env.local` to override.
NEXT_PUBLIC_STRIPE_PUBLIC_KEY="some-key"
STRIPE_RESTRICTED_KEY="some-key"
STRIPE_WEBHOOK_SECRET="some-secret"
STRIPE_WEBHOOK_ENDPOINT="${NEXT_PUBLIC_BASE_URL}/api/webhook/stripe"
# See: https://feedback.fish
NEXT_PUBLIC_FEEDBACK_FISH_PROJECT_ID="some-project-id"
# Apollo config. Use `.env.local` to override.
APOLLO_KEY=some-key
APOLLO_SERVICE=some-service-name
APOLLO_GRAPH_VARIANT=current
APOLLO_SCHEMA_REPORTING=true