Description
tahskr is a simple, open source, self-hosted todo manager.
There are two parts to tahskr. The server side that stores and serves data (that's this repo) and the frontend that provides a web interface accessible from a mobile/desktop browser or Windows Electron app.
Both parts can be self-hosted but you only really need to self-host the server side as tahskr.com or the published Electron app can be used to access data on any tahskr server.
tahskr-server alternatives and similar software solutions
Based on the "tasks" category.
Alternatively, view tahskr-server alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of tahskr-server or a related project?
README
tahskr-server
What is tahskr?
tahskr is a simple, open source, self-hosted todo manager.
There are two parts to tahskr. The server side that stores and serves data (that's this repo) and the frontend that provides a web interface accessible from a mobile/desktop browser or Windows Electron app.
Both parts can be self-hosted but you only really need to self-host the server side as tahskr.com or the published Electron app can be used to access data on any tahskr server.
Screenshot
Installation
Note: These installation instructions relate to the server part of tahskr (this repo). For details about the frontend see this repo.
Docker
Docker images of all releases are published to Docker Hub. These images are built for x86/64 and arm64.
Example Command:
docker run \
-d \
--name tahskr-server \
-v "/path/for/database:/app/data" \
-p 80:8080 \
--restart=always \
dullage/tahskr-server:latest
Other
This is a flask python app so can be deployed in a number of different ways. See the Flask Docs for details.
API Reference
See the API docs here.