Skip to content
Trackr beta
esc
Type to search. Use ↑ ↓ to move, ↵ to open.
Getting started

Welcome to Trackr

Trackr is a fast, keyboard-first workspace that brings tasks, support tickets, weekly planning, chat, notes and your team wiki under a single shortcut — built for small teams running real projects across multiple organizations.

Updated 1 Sept 2026 beta 1 min read

Introduction #

Most teams stitch together five tools that don't talk to each other: a tracker, a ticket queue, a planning calendar, a docs app, and a spreadsheet for who-can-do-what. Trackr collapses all of that into one workspace where the data stays connected and every action has a keyboard shortcut.

This guide walks you from an empty account to a running project: creating your organization, inviting your team, setting up roles, and shipping your first task. If you'd rather just explore, hit ⌘K anywhere in the app to jump to anything.

What you can build #

How the pieces fit #

Trackr is one repository with four deployable parts that evolve together:

PartWhat it does
Web appThe product core. Owns the database schema, the HTTP API and the collaboration server.
WorkerDrains the job queue: emails, webhooks, push notifications, digests, cleanup.
SchedulerEnqueues recurring jobs on a schedule. Never does work itself.
ClientsThe trackr CLI and the native iOS app, both talking to the same /api/v1.

The whole system runs on Postgres and a few Go binaries. There is no message broker and no separate real-time service: the queue is a table, and collaborative editing runs inside the web process. See Self-hosting for the full picture.

Edit this page on GitHub