Todoist
This project is a wrapper to Todoist API.
Support
- Projects
- [] Tasks
- [] Labels
- [] Colors
Environments variables
export TODOIST_TOKEN=""
export TODOIST_URL=""Obs.: By default TODOIST_URL is seted as https://developer.todoist.com/rest/v1/
How to run todoist tests
mix testHow to use this library
First you need to export your environments variables
iex > project = %Todoist.Projects.Project{name: "test"}
iex > Todoist.Projects.ProjectService.create(project)Installation
If available in Hex, the package can be installed
by adding todoist to your list of dependencies in mix.exs:
def deps do
[
{:todoist, "~> 1.0.0"}
]
endDocumentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/todoist.