Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 784 Bytes

File metadata and controls

36 lines (24 loc) · 784 Bytes

Contributing

Setup

  1. From the plaid-node-apiv2 directory, create the .env file, which will be used to configure the Plaid client.
cp .env.example .env
  1. Go to the Plaid Dashboard and copy and paste your client_id, public_key, and secret into .env using a text editor of your choice. Your account must be enabled for sandbox access.

  2. Install the necessary dependencies.

make setup

Running Tests

Please lint (with flake8) and test your pull requests:

$ make lint
$ ./.env make test

Updating Documentation

The generated HTML documentation is served directly from the master branch of the repository. To update the generated documentation:

$ make docs