-
Notifications
You must be signed in to change notification settings - Fork 6
/
.env.template
22 lines (18 loc) · 989 Bytes
/
.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copy this over to .env before you fill it out!
# Get your Plaid API keys from the dashboard: https://dashboard.plaid.com/account/keys
PLAID_CLIENT_ID=
PLAID_SECRET=
# Use 'sandbox' to test with fake credentials in Plaid's Sandbox environment
# Use 'production' to use real data
# NOTE: To use Production, you must set a use case for Link.
# You can do this in the Dashboard under Link -> Link Customization -> Data Transparency
# https://dashboard.plaid.com/link/data-transparency-v5
PLAID_ENV=sandbox
# (Optional) A URL for the webhook receiver running on port 8001, to be used
# by Plaid's /sandbox/transfer/fire_webhook endpoint
SANDBOX_WEBHOOK_URL=https://www.example.com/server/receive_webhook
# If your account is already using transfer, you may have a very large number of
# sync events already that are unrelated to this app! If so, you can set this to
# a higher number to skip over some of these. Otherwise, set this to 0 to start
# from the beginning.
START_SYNC_NUM=0