Skip to content

Commit c6b6260

Browse files
committed
revert .env file delete
1 parent 2bc8f17 commit c6b6260

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.env.example

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# rename this file to .env and supply the values listed below
2+
# also make sure they are available to the build tool (e.g. Netlify)
3+
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code
4+
# be careful not to expose sensitive data (e.g. your Algolia admin key)
5+
6+
# Algolia environment (app ID, search key and base search index name required for search)
7+
# NEXT_PUBLIC_ALGOLIA_APP_ID=insertValue
8+
# NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=insertValue
9+
# NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME=insertValue
10+
# NEXT_PUBLIC_GITHUB_TOKEN_READ_ONLY=insertValue
11+
12+
# Etherscan API key (required for Etherscan API fetches)
13+
# ETHERSCAN_API_KEY=insertValue
14+
15+
# Google API key and Calendar ID (required to fetch Calendar events)
16+
# GOOGLE_API_KEY=
17+
# GOOGLE_CALENDAR_ID=
18+
19+
# Dune Analytics API key (required for total eth staked)
20+
# DUNE_API_KEY=
21+
22+
# Matomo environment (URL and site ID required for analytics)
23+
NEXT_PUBLIC_MATOMO_URL=
24+
NEXT_PUBLIC_MATOMO_SITE_ID=
25+
26+
# Used to avoid loading Matomo in our preview deploys
27+
IS_PREVIEW_DEPLOY=false
28+
29+
# Build pages only for the specified langs. Leave it empty to build all the langs
30+
# e.g. `en,fr` will only build English and French pages
31+
# Note: always include `en` as it is the default lang of the site
32+
BUILD_LOCALES=
33+
34+
# If resource constraints are being hit during builds, change LIMIT_CPUS to a
35+
# fixed number of CPUs (e.g. 2) to limit the demand during build time
36+
LIMIT_CPUS=
37+
38+
# Enables the bundle analyzer
39+
ANALYZE=false
40+
41+
# Use mock data for development. Set to "false" to use live data but you must have the
42+
# environment variables set to make api requests
43+
USE_MOCK_DATA=true

0 commit comments

Comments
 (0)