-
-
Save qweliant/9b3115c2216bd41190c0fcd230a8e10b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get your Plaid API keys from the dashboard: https://dashboard.plaid.com/account/keys | |
| PLAID_CLIENT_ID=CLIENT ID | |
| PLAID_SECRET=SANDBOX SECRET | |
| # Use 'sandbox' to test with fake credentials in Plaid's Sandbox environment | |
| # Use 'development' to test with real credentials while developing | |
| # Use 'production' to go live with real users | |
| PLAID_ENV=sandbox | |
| # PLAID_PRODUCTS is a comma-separated list of products to use when | |
| # initializing Link, e.g. PLAID_PRODUCTS=auth,transactions. | |
| # see https://plaid.com/docs/api/tokens/#create-a-link_token for a complete list | |
| PLAID_PRODUCTS=transactions | |
| # PLAID_COUNTRY_CODES is a comma-separated list of countries to use when | |
| # initializing Link, e.g. PLAID_COUNTRY_CODES=US,CA. | |
| # see https://plaid.com/docs/api/tokens/#create-a-link_token for a complete list | |
| PLAID_COUNTRY_CODES=US,CA | |
| # Only required for Oauth: | |
| # Set PLAID_REDIRECT_URI to 'http://localhost:8000/oauth-response.html' | |
| # The OAuth redirect flow requires an endpoint on the developer's website | |
| # that the bank website should redirect to. You will need to configure | |
| # this redirect URI for your client ID through the Plaid developer dashboard | |
| # at https://dashboard.plaid.com/team/api. | |
| PLAID_REDIRECT_URI=http://localhost:80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment