Skip to content

joiller/task-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

task-tracker

project for roadmap.sh task tracker

How to Run

Clone the repository and run the following command:

git clone https://github.com/joiller/task-tracker.git
    
cd task-tracker

Run the following command to build and run the project:

go build -o task-tracker
./task-tracker --help # To see the list of available commands

# To add a task
./task-tracker add "Buy groceries"

# To update a task
./task-tracker update 1 "Buy groceries and cook dinner"

# To delete a task
./task-tracker delete 1 [2 3 4]

# To mark a task as in progress/done/todo
./task-tracker mark-in-progress 1 [2 3 4]
./task-tracker mark-done 1 [2 3 4]
./task-tracker mark-todo 1 [2 3 4]

# To list all tasks
./task-tracker list
./task-tracker list done
./task-tracker list todo
./task-tracker list in_progress

About

project for roadmap.sh

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages