forked from goldfinch-eng/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
67 lines (51 loc) · 2.58 KB
/
.env.example
File metadata and controls
67 lines (51 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
66
67
#################################
# Env variables used by scripts #
#################################
TEST_USER={{ADD_YOUR_METAMASK_ADDRESS_HERE}},
# Gasless relay config
RELAY_SERVER_PORT=4000
# You may want to add your own wallet address to whitelisted senders, and borrower contracts to whitelisted contracts
ALLOWED_SENDERS=0xE7f9ED35DA54b2e4A1857487dBf42A32C4DBD4a0,
FORWARDER_ADDRESS=0xa530F85085C6FE2f866E7FdB716849714a89f4CD
# Set the permit deadline to be a year. This is so that we can advance time locally without
# accidentally making permits invalid
REACT_APP_PERMIT_DEADLINE=31536000
# Global backer deposit limit for tranched pools. This is expressed as a percentage of the pool's limit.
# In other words, if set to 0.025, a given backer is restricted from depositing more than 2.5% of
# the pool's limit.
REACT_APP_GLOBAL_BACKER_LIMIT=0.025
# The threshold in dollars for which pools to display. Setting it to 200$ filters out inactive
# (0 limit) and the 100$ employee test pools
REACT_APP_POOL_FILTER_LIMIT=200
# If you want to be able to update Autotasks locally
# AUTOTASK_API_KEY=
# AUTOTASK_API_SECRET=
##################################
# Env variables used by `client` #
##################################
# NOTE: For the client to be able to use these variables, you must:
# (1) create a symlink to your root `.env.local` file, from inside the `client` dir, using `cd client && ln -s ../.env.local .env.local`,
# OR
# (2) create a separate `client/.env.local` file containing these variables.
# If you want to have the client execute your local server functions using the
# Firebase emulator, instead of executing the server functions deployed to the
# `goldfinch-frontends-dev` project, uncomment this line:
# REACT_APP_GCLOUD_FUNCTIONS_URL="http://localhost:5001/goldfinch-frontends-dev/us-central1"
# To have Sentry capture errors during local development, uncomment these lines:
# REACT_APP_SENTRY_DSN=https://24a4e18ee0d54947b6cd65d18df85450@o915675.ingest.sentry.io/5857501
# REACT_APP_SENTRY_ENVIRONMENT=development
# REACT_APP_SENTRY_RELEASE=
# Allows you to run mainnet forking tests locally. Sign up for a free Alchemy
# account, and set your API key here.
# ALCHEMY_API_KEY=
# ALCHEMY_RINKEBY_API_KEY=
# Allows you to verify contracts on Etherscan that you may deploy to testnet or mainnet
# ETHERSCAN_API_KEY=
##################################
# Toggles #
##################################
# Feature Toggles
# Set Senior pool page to use data originated from The graph
# REACT_APP_TOGGLE_THE_GRAPH=true
# Activate integration to get the GFI price
# REACT_APP_TOGGLE_GET_GFI_PRICE=true