Skip to content

Commit

Permalink
release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkriss committed May 18, 2015
1 parent 9e3dbf3 commit cff1c66
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 18 deletions.
39 changes: 25 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,36 @@
# Ember-plaid
# ember-plaid

This README outlines the details of collaborating on this Ember addon.
[Plaid's](https://plaid.com/) drop-in Link module as an Ember component.

## Installation

* `git clone` this repository
* `npm install`
* `bower install`
```bash
# From within your ember-cli project
ember install ember-plaid
```

## Running
## Configuration

* `ember server`
* Visit your app at http://localhost:4200.
```javascript
// config/environment.js
ENV['ember-plaid'] = {
clientName: 'REQUIRED',
product: 'auth',
key: 'test_key',
env: 'tartan'
};
```

## Running Tests
Check the [Link Docs](https://github.com/plaid/link#custom-integration) for all of the parameter options.

* `ember test`
* `ember test --server`
## Usage

## Building
```hbs
{{plaid-link action='processPlaidToken'}}
* `ember build`
{{!-- Or --}}
For more information on using ember-cli, visit [http://www.ember-cli.com/](http://www.ember-cli.com/).
{{#plaid-link action='processPlaidToken'}}Verify Bank Account{{/plaid-link}}
```

Once a user has successfully onboarded via Plaid Link, the provided action will be called with the `public_token` passed as the sole argument. From there, you should follow the [instructions](https://github.com/plaid/link#step-3-write-server-side-handler) for exchanging the `public_token` for an `access_token`.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-plaid",
"version": "0.0.0",
"description": "The default blueprint for ember-cli addons.",
"version": "0.1.0",
"description": "Plaid Link for your Ember app",
"directories": {
"doc": "doc",
"test": "tests"
Expand All @@ -11,11 +11,11 @@
"build": "ember build",
"test": "ember try:testall"
},
"repository": "",
"repository": "https://github.com/jasonkriss/ember-plaid",
"engines": {
"node": ">= 0.10.0"
},
"author": "",
"author": "Jason Kriss",
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.0.2",
Expand Down

0 comments on commit cff1c66

Please sign in to comment.