ExTrello
A library for interfacing with the Trello API.
TODO:
- Fetch Boards
- Create & Edit Boards
- Support nested resources
- Fetch Cards
- Comment on Cards
- Create & Edit Cards
-
Add models for label, checklist, member, notification, organization, session, token,
action - Usage tutorial. (For now use: https://hexdocs.pm/ex_trello/0.2.3/ExTrello.html)
- Tests
- Pagination
-
Implement own OAuth 1.0 library to remove dependency on
erlang-oauth(or investigate existing solutions)
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.2.3"}
]
end
```-
Ensure
ex_trellois started before your application: (Technically not necessary right now, but will be soon(tm).)
```elixir
def application do
[applications: [:ex_trello]]
end
```