ExTrello
A library for interfacing with the Trello API.
TODO:
- Fetch Boards
- Create & Edit Boards
- Usage tutorial. (For now use: https://hexdocs.pm/ex_trello/0.2.1/ExTrello.html)
- Support nested resources (fetching cards for a particular board in 1 request)
- Pagination
- Fetch Cards
- Create & Edit Cards
- Comment on Cards
Installation
-
Add
ex_trelloto your list of dependencies inmix.exs:
```elixir
def deps do
[
{:oauth, github: "tim/erlang-oauth"}, # The erlang-oauth package isn't included
{:ex_trello, "~> 0.1.9"}
]
end
```-
Ensure
ex_trellois started before your application:
```elixir
def application do
[applications: [:ex_trello]]
end
```