Jira is just better. No need for this project. Archived.
Jira is slower than my grandma. Unarchived.
I switched to taskwarrior. Archived.
My personal webserver.
- Python >= 3.10
- Every distinct part of the website is a blueprint with its own backend. They are discovered on startup. So, you can add your own blueprint without editing any code.
- Classic kanban:
Root, Branch, and Leaf can be thought of as if they are folders. A root can have infinite branches. A branch can have infinite leaves. Each leaf has Todo, In Progress, and Done (TPD) sections.
Each task inside the TPD sections is draggable by mouse.
Leafs can also have a deadline. In this case, unspecified task deadlines are set to the parent leaf deadline.
Each task has a title, summary, deadline, priority, and story-point attributes.
- Calendar view:
If the deadline is specified, tasks appear here. On top of that, you can specify recurring events by adding them to the generated
kanban.json
file. Add the following code to the list (calendar_recurring
).
{
"allDay": false,
"backgroundColor": "#0a73b0",
"borderColor": "#0f7ff0",
"daysOfWeek": [
"6"
],
"endRecur": "2024-08-31",
"endTime": "17:00:00",
"groupId": "recurring",
"startRecur": "2022-08-14",
"startTime": "10:00:00",
"title": "supervisor"
},
-
Timeline view: Completed tasks, which are moved to the Done column of classic kanban view, appear here.
-
Table view: All the unfinished tasks appear here. You can also sort the columns.
-
Story Points view: This is like Jira's story points but worse and buggy.
You must have git CLI and read/write permissions to your private repo.
Every card added as a seperate frame. They are dragable and resizable. You can save the final positions.
- I am not a web developer
- There are a lot of bugs
- Everything is designed for 1080p 15 inch monitor.
- Even though there is a login requirement, do not use the server outside your private internet.