Skip to content

vianavitor-dev/task-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Tracker

The task tracker is a simple project created following the instruction from the task-tracker challenge, available on the Backend Developer roadmap.

How to use it

Installing:

Clone this repository as the command bellow says:

git clone https://github.com/vianavitor-dev/task-tracker.git

Usage:

There are the available commands that this project has:

# use this to go on the project directory
cd task-tracker

# Adding a new Task
go run main.go add "Buy groceries"

# Updating a Task
go run main.go update 1 "Buy groceries and cook dinner"

# Deleting a Task
go run main.go delete 1

# Marking a Task as in progress or done
go run main.go mark-in-progress 1
go run main.go mark-done 1

# Listing all Tasks
go run main.go list

# Listing Tasks by status
go run main.go list done
go run main.go list todo
go run main.go list in-progress

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages