Popularity
1.1
Stable
Activity
2.9
-
9
3
1

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.

Programming language: Python
License: MIT License
Tags: Python     Task management/To-do lists     Tasks    
Latest version: v3.0.0

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.

Do you think we are missing an alternative of tahskr-server or a related project?

Add another 'tasks' Software solution

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

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.