/ .env.example
.env.example
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 # Matomo environment (URL and site ID required for analytics) 20 NEXT_PUBLIC_MATOMO_URL= 21 NEXT_PUBLIC_MATOMO_SITE_ID= 22 23 # Used to avoid loading Matomo in our preview deploys 24 IS_PREVIEW_DEPLOY=false 25 26 # Build pages only for the specified langs. Leave it empty to build all the langs 27 # e.g. `en,fr` will only build English and French pages 28 # Note: always include `en` as it is the default lang of the site 29 BUILD_LOCALES= 30 31 # If resource constraints are being hit during builds, change LIMIT_CPUS to a 32 # fixed number of CPUs (e.g. 2) to limit the demand during build time 33 LIMIT_CPUS=