Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 579 Bytes

File metadata and controls

24 lines (19 loc) · 579 Bytes

Creating a Task Manager (a Charm Tutorial)

This project is inspired by the incredible work on Task Warrior, an open source CLI task manager. I use this project quite a bit for managing my projects without leaving the safety and comfort of my terminal. (⌐■_■)

Here's the plan:

Checklist

Data Storage

  • set up a SQLite database
    • open SQLite DB
    • add task
    • delete task
    • edit task
    • get tasks

Making a CLI with Cobra

  • add CLI
    • add task
    • delete task
    • edit task
    • get tasks