-
Notifications
You must be signed in to change notification settings - Fork 165
/
.env.example
74 lines (66 loc) · 2.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -----------------------------------------------
# Environment variables shared across packages
# -----------------------------------------------
##Debugging & development - DEFAULTS SUFFICIENT
# development for local, production for prod builds
REACT_APP_ENV=development
REACT_APP_ALLO_VERSION=allo-v2
# Allow overriding permissions checks by appending ?debug=true to the URL
REACT_APP_ALLOW_URL_DEBUG_MODE=true
# Disable permission checks by default
REACT_APP_DEBUG_MODE=true
##API keys - DEFAULTS SUFFICIENT
# Get a projectId at https://cloud.walletconnect.com
REACT_APP_WALLETCONNECT_PROJECT_ID=42a4d689485d5a324116e53ed077d907
# Set the Infura and Alchemy vars only if you need
# them as providers, otherwise the public ones will be used.
#REACT_APP_ALCHEMY_ID=
#REACT_APP_INFURA_ID=
##Passport - nonessential in local
REACT_APP_PASSPORT_API_ENDPOINT=https://api.scorer.gitcoin.co
# Get your own key at https://scorer.gitcoin.co
REACT_APP_PASSPORT_API_KEY=
REACT_APP_PASSPORT_API_COMMUNITY_ID=335
REACT_APP_PASSPORT_AVALANCHE_API_KEY=
REACT_APP_PASSPORT_API_COMMUNITY_ID_AVALANCHE=0000
##Indexer & Data Layer - DEFAULTS SUFFICIENT
# URL of the indexer. http://localhost:8080 for local indexer
REACT_APP_INDEXER_V2_API_URL=https://grants-stack-indexer-v2.gitcoin.co
# Search API URL where the Data Layer should point to
REACT_APP_GRANTS_STACK_SEARCH_API_BASE_URL=https://d2n9vtjeq685yt.cloudfront.net
##Debugging & development - ALL OPTIONAL
# Overrride the default chains
#REACT_APP_CHAINS_OVERRIDE=optimism,fantomTestnet,fantom,mainnet,sepolia,pgnTestnet,pgn,arbitrum,arbitrumGoerli,base,scroll,polygon,avalanche,avalancheFuji,zkSyncEraMainnet,zkSyncEraTestnet,celo,celoAlfajores,seiDevnet,lukso,luksoTestnet
REACT_APP_DATADOG_APPLICATION_ID=
REACT_APP_DATADOG_CLIENT_TOKEN=
REACT_APP_DATADOG_SERVICE=
REACT_APP_DATADOG_SITE=
REACT_APP_SENTRY_AUTH_TOKEN=
REACT_APP_SENTRY_DSN=
REACT_APP_TAG_MANAGER=
REACT_APP_INTERCOM_APP_ID=
REACT_APP_POSTHOG_TOKEN=
REACT_APP_POSTHOG_KEY=
REACT_APP_POSTHOG_HOST=
REACT_APP_EXPLORER_DISABLE_MATCHING_ESTIMATES=false
# ---------------------------
# Builder - REQUIRED
# The Pinata JWT var is required in Builder and Manager to
# upload and pin metadata files to Pinata. Default ('TEST')
# will enable packages to run, but they won't allow you
# to upload and pin files. Create your account on
# https://pinata.cloud and set your own JWT value here.
REACT_APP_PINATA_JWT=TEST
REACT_APP_IPFS_BASE_URL=https://d16c97c2np8a2o.cloudfront.net
REACT_APP_PINATA_BASE_URL=https://api.pinata.cloud
# ---------------------------
# ---------------------------
# Explorer - nonessential
# create key following https://www.opensource.observer/docs/get-started/
REACT_APP_OSO_API_KEY=
# ---------------------------
# ---------------------------
# Manager - DEFAULTS SUFFICIENT
REACT_APP_BUILDER_URL=https://builder.gitcoin.co
REACT_APP_GRANT_EXPLORER=https://explorer.gitcoin.co
# ---------------------------