forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (44 loc) · 2.16 KB
/
.env.example
File metadata and controls
56 lines (44 loc) · 2.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# rename this file to .env and supply the values listed below
# also make sure they are available to the build tool (e.g., Netlify)
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code
# be careful not to expose sensitive data (e.g., your Algolia admin key)
# Algolia environment (app ID, search key and base search index name required for search)
# You can use the following test keys provided by DocSearch for local development/testing:
# NEXT_PUBLIC_ALGOLIA_APP_ID=R2IYF7ETH7
# NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=599cec31baffa4868cae4e79f180729b
# NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME=docsearch
# Replace insertValue with your actual keys for production builds.
# NEXT_PUBLIC_ALGOLIA_APP_ID=insertValue
# NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=insertValue
# NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME=insertValue
# Github token for read-only use with api functions
# GITHUB_TOKEN_READ_ONLY=insertValue
# Etherscan API key (required for Etherscan API fetches)
# ETHERSCAN_API_KEY=insertValue
# Google API key and Calendar ID (required to fetch Calendar events)
# GOOGLE_API_KEY=
# GOOGLE_CALENDAR_ID=
# GOOGLE_SHEET_ID_DAPPS=
# Dune Analytics API key (required for total eth staked)
# DUNE_API_KEY=
# Matomo environment (URL and site ID required for analytics)
NEXT_PUBLIC_MATOMO_URL=
NEXT_PUBLIC_MATOMO_SITE_ID=
# Used to avoid loading Matomo in our preview deploys
NEXT_PUBLIC_IS_PREVIEW_DEPLOY=false
# Build pages only for the specified langs. Leave it empty to build all the langs
# e.g., `en,fr` will only build English and French pages
# Note: always include `en` as it is the default lang of the site
NEXT_PUBLIC_BUILD_LOCALES=
# If resource constraints are being hit during builds, change LIMIT_CPUS to a
# fixed number of CPUs (e.g., 2) to limit the demand during build time
LIMIT_CPUS=
# Enables the bundle analyzer
ANALYZE=false
# Use mock data for development. Set to "false" to use live data but you must have the
# environment variables set to make api requests
USE_MOCK_DATA=true
# AWS SES Configuration for Enterprise Contact Form
# SES_ACCESS_KEY_ID=your_iam_access_key_id
# SES_SECRET_ACCESS_KEY=your_iam_secret_access_key
# SES_REGION=us-east-2