I’ve been using Planka (https://planka.app/) for years, to manage my to-do lists and other general lists of things (like gifts given, movies I want to watch and so on). But it’s been ages since I looked around for other, better apps. I really like the kanban board / trello approach they use as the lists are easy to maintain, add items to, and I can see the whole list in one glance.
I don’t need fancy stuff (teams features, sharing, advanced triggers or other automation). It’s just for me, running on my home server. Apps should be FOSS and installable via docker, ideally. I’ve looked at a few of the apps on selfh.st ( https://selfh.st/apps/?search=to-do ) but nothing stood out as really interesting.
Any apps you think of as new and interesting in this area?
Thanks!
EDIT: I’ve installed Vikunja and I’m giving it a try. So far, it was super easy to install and get started with. We’ll see how it looks after a few days, but thanks all for the ideas shared here. 👋🙂


From TFA, emphasis mine:
What Taskwarrior lets you do is something like this for people:
task add priority:high due:thursday depends:32 something I need to do task ready # shows all of my tasks that aren't waiting on something or depending on something task project:home-repairs export > home-repairs.json # export my entire home repair project to a json file to process into a gantt chart, budget (since I can add a price tag to each task) and whatever elsebut then I can also have a script that looks like:
# taskfile.sh infile="$1" proj ="$2" while IFS= read -r line; do [ -z "$line" ] && continue [[ "$line" =~ ^[[:space:]]*# ]] && continue echo "Adding task: $line" if [ -n "$proj" ]; then task add "$line" "$proj" else task add "$line" fi done < "$input_file"which lets me have preset task lists for various things, like: