Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laktosterror/task-cli
A simple CLI app to track your tasks and manage your to-do list.
https://github.com/laktosterror/task-cli
Last synced: 26 days ago
JSON representation
A simple CLI app to track your tasks and manage your to-do list.
- Host: GitHub
- URL: https://github.com/laktosterror/task-cli
- Owner: laktosterror
- Created: 2024-09-16T09:24:50.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-19T23:18:54.000Z (3 months ago)
- Last Synced: 2024-12-07T16:41:33.215Z (about 1 month ago)
- Language: C#
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## task-cli
A simple CLI app written in C# to track your tasks and todos.Main goals for this exercise was to practice code structure, variable/method naming and data persistence.
#### Requirements
The application should run from the command line, accept user actions and inputs as arguments, and store the tasks in a JSON file. The user should be 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#### Constraints to guide the implementation:
- You can use any programming language to build this project.
- Use positional arguments in command line to accept user inputs.
- Use a JSON file to store the tasks in the current directory.
- The JSON file should be created if it does not exist.
- Use the native file system module of your programming language to interact with the JSON file.
- Do not use any external libraries or frameworks to build this project.
- Ensure to handle errors and edge cases gracefully.Project idea from:
https://roadmap.sh/projects/task-tracker