-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
39 lines (27 loc) · 1.12 KB
/
.env.example
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
# The main GraphQL endpoint URL to fetch data from
NEXT_PUBLIC_CMS_GRAPHQL_API_URL="https://cms.com/api/v1/graphql"
# The main REST endpoint URL to fetch data from
NEXT_PUBLIC_CMS_REST_API_URL="https://cms.com/api/v1/rest"
# Access token to interact with the CMS
NEXT_PUBLIC_CMS_API_TOKEN="<api-token>"
# PostHog integration
NEXT_PUBLIC_POSTHOG_KEY="<token>"
NEXT_PUBLIC_POSTHOG_HOST="<host>"
# Discord Webhook URL for contact submissions
NEXT_PUBLIC_DISCORD_CONTACT_WEBHOOK_URL=""
# Discord Webhook URL for direct reporting
NEXT_PUBLIC_DISCORD_REPORTING_WEBHOOK_URL=""
# Access to MapBox APIs
NEXT_PUBLIC_MAPBOX_API_KEY = 'pk.xxxxxxxxxxxxxxxxxx'
# Generate a local build id namespace via https://www.uuidgenerator.net/
BUILD_ID_NAMESPACE="388f729a-0eb7-4477-b054-9488bd2d8c4b"
# Use "development" as the default environment
NODE_ENV="development"
# Can be useful to debug GraphQL queries
DEBUG_GRAPHQL_CLIENT=false
# Enables or disables the staging indicator
ENABLE_STAGING_INDICATOR=true
# Staging indicator data
GITHUB_SHA=a84d7e82c459abffdcb64d7646def92876feaadb
GITHUB_REF=refs/heads/feat/some-branch-name
GITHUB_RUN_ID=4962330368