vetasks
v1.0.0
Published
CLI Task manager project to practice
Readme
task-tracker-cli
CLI Task manager project to practice working with the filesystem, handling user inputs, and building a simple CLI application.
The user is able to:
- Add, Update, and Delete tasks
- Mark a task as in progress or done
- List all tasks
- List all tasks that are done
- List all tasks that are not done
- List all tasks that are in progress
Adding a new task
task-cli add "Buy groceries"
Output: Task added successfully (ID: 1)
Updating and deleting tasks
task-cli update 1 "Buy groceries and cook dinner"
task-cli delete 1
Marking a task as in progress or done
task-cli mark-in-progress 1
task-cli mark-done 1
Listing all tasks
task-cli list
Listing tasks by status
task-cli list done
task-cli list todo
task-cli list in-progress
