Instructions for contributing to plaid-go. A go client library for the Plaid API. This library is fully generated from the Plaid OpenAPI spec. The library is generated internally, so don't try to iterate from this repo.
- To build the docker image for the client tests, run
docker build -t plaid-go .
. - Go to the Plaid Dashboard and copy and paste your
client_id
and sandboxsecret
into the following command. - Run
docker run --rm -e CLIENT_ID=$CLIENT_ID -e SECRET=$SECRET plaid-go
.
If you wish to run a single test, do something like this:
CLIENT_ID="" SECRET="" go test -v ./... -run TESTNAME