Travis CI |
---|
This project uses stack
as a dependency manager and build tool.
# install dependencies and build getit
stack install
# display existing todos - should be empty on first run
stack exec getit list
# store some samples in our todo list
stack exec getit store
# display the sample todos
stack exec getit list
# add a task
stack exec getit new task "HELLO WORLD" "2018-06-01 12:00:00"
# see our new todo!
stack exec getit list