Hey everybody! I am building self-hosted fast task manager, and today I am happy announce that I made desktop app and it supports macos, windows and linux! For mobile it is still PWA. All platforms support fast sync and works offline even when your homelab is down.

Also, one of the top feature that I really wanted is global quick add shortcut. You can trigger it with cmd+shift+a on macos, ctrl+shift+a on windows/linux.

Installation

Single Docker command with SQLite as db:

docker run -d \
   -p 3000:3000 \
   -v will_be_done_storage:/var/lib/will-be-done \
   --restart unless-stopped \
   ghcr.io/will-be-done/will-be-done:latest
  • MonkCanatella@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    Pretty nice work but it’s not an alternative to those. It’s very lightweight which is enough for a lot of people, but this is maybe 25% feature parity with either of those

    • quolpr@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      14 hours ago

      Thanks for the feedback! You’re right that it’s not a 1:1 replacement for TickTick/Todoist yet. That is why I used the word ‘alternative’ rather than ‘replacement’ in the title.

      The core functionality is already there, and I’m working toward 70–80% feature parity over the next year or two.

      I am also glad to know what particular features you miss so they will be more in my focus

  • comrademiao@piefed.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    What does this mean in your readme? How has technology for such a simple seeming project been behind and caught up?

    This is my third attempt; the first two failed because the technology for fast, offline-first apps wasn’t ready.

    • quolpr@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      14 hours ago

      Oh yeah, it’s a long story!

      My core idea is to build a task manager that will stay with me for the rest of my life. Because of that, my main requirement is for it to be fast even with a massive database. If I have 10k+ tasks saved over the years, it should still load and feel instant.

      Another requirement is that it must be offline-first. I live in a country where the internet goes down pretty often, and I need my tasks to be available regardless of the server status.

      Finally, I wanted a clean API so I could connect things like an MCP server or create tasks via Telegram.

      I couldn’t find an existing app that met all these needs, here is a table where I compared all self-hosted apps that I found(in awesome self-hosted github):

      Here is how my journey went:

      1. First approach: I tried using Redux and MobX. Performance sucked. The main reason is that MobX/Redux don’t support B-tree indexing. Local-first apps rely heavily on “intervals”(cause you use fractional-indexing-jittered to order things and to support LWW per column), and that’s exactly where B-trees shine. Without them, it just got slower as the data grew.
      2. Second approach: I tried a reactive UI based on persistent SQLite queries (using wa-sqlite). It worked well for small lists, but it felt sluggish once the dataset got large.
      3. Third approach (Current): I decided to build my own DB solution, which you can see here: HyperDB. The trick is that you write the logic once, but on the frontend, it runs against an in-memory B-tree index (which is incredibly fast) and data still stored at persistent wa-sqlite layer, while on the backend, it runs against persistent SQLite (which keeps memory usage low).

      This third approach finally solved all three requirements. It’s hard to find an open-source app that does this because this specific architecture is difficult to “cook” correctly. On top of the database speed, I also had to solve the sync problem, that should also somehow resolve conflicts while clients are offline, which I handled by building own sync layer with LWW CRDT per column.

    • quolpr@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      14 hours ago

      I checked Planify - wow, it is a decent work. But as far as I see it misses web app, mobile mode (will be done can do it with PWA) and macOS/windows platforms.

      Also, the killer feature of will be done - the planner mode. You can plan your tasks through week. It basically the main reason why I built it.

      Also, I compared it will all others task managers that I found at self-hosted github (except Planify, it doesn’t relate to self-hosted)

  • conrad82@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    Nice to see CalDAV is on the roadmap. I will wait for that before trying it out, as it is the cornerstone for my system today (radicale and tasks.org)

  • ArchEngel@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    Ooooh, this looks good! Just after I went through most of the other task apps and found them lacking, this appears!

    • quolpr@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 day ago

      Thanks! Not for now, but I am building it in a way that it will be pretty easy to add themes support