This is the best tool for controlling the gardens We organize daily projects, projects and people.
git clone https://github.com/1428Stef/ToDoGO.git
cd ToDoGO/src/ToDoCreate a ToDoGO/src/ToDo/stotage/storage.json:
[
{
"title": "hello",
"mark": false,
"date": "2026-03-27 14:01:24",
"id": 912864339711
}
]CLI:
make run-cli ARGS="add -title hello"| Command | Flag | Description |
|---|---|---|
add |
--title |
Create a new task |
list |
— | Show all tasks |
done |
--id |
Mark a task as completed |
del |
--id |
Delete a task |
edit |
--id, --title |
Edit task title |
help |
— | Show all commands |
API-server:
make run-apiAPI: http://localhost:9091
| Method | Endpoint | Body | Description |
|---|---|---|---|
GET |
/list |
— | Get all tasks (JSON) |
POST |
/add |
Task title (plain text) | Create a task |
PATCH |
/done |
Task ID (plain text) | Mark as done |
DELETE |
/del |
Task ID (plain text) | Delete a task |
License: MIT
