Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 997 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 997 Bytes

TTodo - Simple ToDo App Build Status Coverage Status

Simple ToDo Cli built as part of learning elixir

Installation

def deps do
  [
    {:ttodo, "~> 0.1.0"}
  ]
end

Build

sh build.sh

or

mix escript.build

Usage

Adding a task

./ttodo --add 'hello there'

Listing all tasks

./ttodo --list

Interactive mode (buggy*)

./ttodo --interactive

Ttodo->list
|hello there         | 2019-06-20T16:18:22+00:00 | 2019-06-20T16:18:22+00:00 |

Ttodo->

Todo

  • CLI implementation
    • Add todo ttodo --add "hello"
    • List all todos ttodo --list
    • Added interactive mode ttodo --interactive
    • Add todo with due date ttodo add "hello" due:tomorrow
    • Think more :)