In Greek mythology, the Talaria are the winged sandals of Hermes — forged by Hephaestus, they let the messenger god fly as fast as any bird.
Local kanban board for task management. No Docker required.
- Tasks: Stored as markdown files in
/tasksdirectory - Projects: Configured in
data/projects.jsonwith real filesystem paths - Server: Lightweight Python HTTP server
- Access: http://localhost:8080
./start.shThis will:
- Generate
tasks.jsonfrom markdown files in/tasks - Start Python server on port 8080
- Open browser automatically
Edit data/projects.json to add/modify projects:
[
{
"id": "project-id",
"name": "Project Name",
"path": "/absolute/path/to/project",
"description": "Project description",
"language": "gdscript",
"active": true
}
]Note: Use absolute filesystem paths for the path field.
Tasks are markdown files in /tasks with frontmatter:
---
title: Task Title
status: todo
priority: high
project: project-id
---
Task description here.The scripts/md_to_talaria.sh script converts these to tasks.json for the web UI.