-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
17,345 additions
and
1,510 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export CLIENT_ID=<client_id> | ||
export PUBLIC_KEY=<public_key> | ||
export SECRET=<secret> | ||
|
||
"$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,16 @@ | ||
*.py[cod] | ||
.env | ||
|
||
# C extensions | ||
*.so | ||
*.pyc | ||
__pycache__ | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
__pycache__ | ||
|
||
# Installer logs | ||
pip-log.txt | ||
venv | ||
|
||
# Unit test / coverage reports | ||
.cache/* | ||
.coverage | ||
.tox | ||
.cache | ||
nosetests.xml | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
.tox/* | ||
|
||
#pycharm | ||
.idea | ||
docs/.* | ||
docs/objects.inv |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# 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 | ||
``` | ||
|
||
2. Go to the [Plaid Dashboard](https://dashboard.plaid.com/) 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. | ||
|
||
3. Install the necessary dependencies. | ||
|
||
``` | ||
make setup | ||
``` | ||
|
||
## Running Tests | ||
|
||
Please lint (with `flake8`) and test your pull requests: | ||
|
||
```console | ||
$ 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: | ||
|
||
```console | ||
$ make docs | ||
``` |
This file contains 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
Oops, something went wrong.