{"id":24793985,"url":"https://github.com/asjordi/task-tracker-cli","last_synced_at":"2025-03-24T17:47:22.501Z","repository":{"id":253186232,"uuid":"842147121","full_name":"ASJordi/task-tracker-cli","owner":"ASJordi","description":"CLI app to track your tasks and manage your to-do list.","archived":false,"fork":false,"pushed_at":"2024-10-20T23:35:35.000Z","size":139,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T22:34:29.097Z","etag":null,"topics":["cli-app","java","task-tracker-app"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ASJordi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-13T19:08:07.000Z","updated_at":"2024-11-11T23:44:57.000Z","dependencies_parsed_at":"2024-11-07T19:45:51.503Z","dependency_job_id":null,"html_url":"https://github.com/ASJordi/task-tracker-cli","commit_stats":null,"previous_names":["asjordi/task-tracker-cli"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Ftask-tracker-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Ftask-tracker-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Ftask-tracker-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ASJordi%2Ftask-tracker-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ASJordi","download_url":"https://codeload.github.com/ASJordi/task-tracker-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245321160,"owners_count":20596308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-app","java","task-tracker-app"],"created_at":"2025-01-29T22:30:26.853Z","updated_at":"2025-03-24T17:47:22.475Z","avatar_url":"https://github.com/ASJordi.png","language":"Java","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003e\u003ca href=\"https://github.com/ASJordi/task-tracker-cli\"\u003eTask Tracker CLI\u003c/a\u003e\u003c/h1\u003e\n\n  \u003cp align=\"center\"\u003eCLI app to track your tasks and manage your to-do list\u003c/p\u003e\n\u003c/div\u003e\n\n## About :computer:\n\nTask Tracker CLI is a project used to track and manage your tasks. You can add, update and delete tasks, mark a task as in progress or done, and list all tasks, tasks that are done, tasks that are not done, and tasks that are in progress. The tasks are stored in a JSON file in the current directory.\n\n\u003cimg src=\"src/main/resources/app01.png\" alt=\"Task Tracker CLI\" width=\"400\"/\u003e \u003cbr\u003e\n\u003cimg src=\"src/main/resources/app02.png\" alt=\"Task Tracker CLI\" width=\"400\"/\u003e\n\u003cimg src=\"src/main/resources/app03.png\" alt=\"Task Tracker CLI\" width=\"400\"/\u003e\n\n## Features :sparkles:\n\n- Add a new task\n- Update a task\n- Delete a task\n- Mark a task as in progress or done\n- List all tasks\n- List tasks by status (done, todo, in-progress)\n\n## Technologies :gear:\n\n- Java 21\n- [Jackson](https://github.com/FasterXML/jackson-databind/)\n\n## Installation :floppy_disk:\n\n1. Clone the repository\n2. Open the project in your favorite IDE\n3. Run the project\n4. Or build the project with Maven and run the generated jar file\n\n```bash\nmvn clean install\n```\n\n## Usage :hammer_and_wrench:\n```bash\nUsage: java -jar task-tracker.jar [command]\nThe options below may be used to perform the desired operations:\n    add \u003cdescription\u003e               - Add a new task\n    update \u003ctaskId\u003e \u003cdescription\u003e   - Update a task\n    delete \u003ctaskId\u003e                 - Delete a task\n    mark-in-progress \u003ctaskId\u003e       - Mark a task as in progress\n    mark-done \u003ctaskId\u003e              - Mark a task as done\n    list                            - List all tasks\n    list done                       - List all done tasks\n    list todo                       - List all todo tasks\n    list in-progress                - List all in progress tasks\n    help                            - Display help information\n```\n\n### Examples :bulb:\n\n```bash\n# Adding a new task\ntask-cli add \"Buy groceries\"\n# Output: Task added successfully (ID: 1)\n\n# Updating and deleting tasks\ntask-cli update 1 \"Buy groceries and cook dinner\"\ntask-cli delete 1\n\n# Marking a task as in progress or done\ntask-cli mark-in-progress 1\ntask-cli mark-done 1\n\n# Listing all tasks\ntask-cli list\n\n# Listing tasks by status\ntask-cli list done\ntask-cli list todo\ntask-cli list in-progress\n```\n\n## License :page_facing_up:\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n## Contact :email:\n\nJordi Ayala - [@ASJordi](https://twitter.com/ASJordi)\n\nProject Link: [https://github.com/ASJordi/task-tracker-cli](https://github.com/ASJordi/task-tracker-cli)\n\nReference: [https://roadmap.sh/projects/task-tracker](https://roadmap.sh/projects/task-tracker)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasjordi%2Ftask-tracker-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasjordi%2Ftask-tracker-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasjordi%2Ftask-tracker-cli/lists"}