Taskwarrior - Command line Task Management taskwarrior.org https://taskwarrior.org
Find a file
Dustin J. Mitchell 7a2857e814
Merge pull request #70 from djmitche/issue9
Support configuration of the cli
2020-11-28 22:02:07 -05:00
.github Create dependabot.yml 2020-11-28 11:31:12 -05:00
cli limit config file usage to just yaml 2020-11-28 19:43:30 -05:00
docs limit config file usage to just yaml 2020-11-28 19:43:30 -05:00
sync-server use semver ranges for dependencies 2020-11-28 15:13:30 -05:00
taskchampion Factor replica and sync configuration into simple owned structs 2020-11-28 16:57:32 -05:00
.gitignore implement TextOperation 2019-12-25 10:51:44 -05:00
.taskcluster.yml add cargo clippy to CI 2020-11-24 13:02:14 -05:00
Cargo.lock limit config file usage to just yaml 2020-11-28 19:43:30 -05:00
Cargo.toml reorganize into separate crates 2020-11-23 14:27:47 -05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2020-11-26 23:18:32 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2020-11-26 23:36:54 -05:00
LICENSE Create LICENSE 2020-11-26 23:20:45 -05:00
README.md scrpit to push docs 2020-11-26 23:02:15 -05:00
SECURITY.md Create SECURITY.md 2020-11-26 23:16:39 -05:00

TaskChampion

TaskChampion is an open-source personal task-tracking application. Use it to keep track of what you need to do, with a quick command-line interface and flexible sorting and filtering. It is modeled on TaskWarrior, but not a drop-in replacement for that application.

Goals

  • Feature parity with TaskWarrior (but not compatibility)
  • Aproachable, maintainable codebase
  • Active development community
  • Reasonable privacy: user's task details not visible on server
  • Reliable concurrency - clients do not diverge
  • Storage performance O(n) with n number of tasks

Structure

There are three crates here:

See Also