Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update read me #384

Merged
merged 4 commits into from
Jun 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ The old `1.x.x` line of releases has been kept and is being published separately

The actively developed line of releases is `2.x.x` and is contained within the `master` branch. New features are being added to this line of releases, so to develop this library further, create pull requests against the master branch.

2.x.x Works with Stripe API version 2018-05-21

# Documentation

- [Latest HexDocs](https://hexdocs.pm/stripity_stripe/)
Expand All @@ -40,6 +42,15 @@ _Not necessary if using elixir >= 1.4_
defp application do
[applications: [:stripity_stripe]]
end

## Configuration

To make API calls, it is necessary to configure your Stripe secret key.

```ex
use Mix.Config

config :stripity_stripe, api_key: "YOUR SECRET KEY"
```

# Documentation for 1.x.x
Expand Down