Skip to content

Tally

Tally is a lightweight, browser-based task management and tracking app built with React, TypeScript, and Vite. All data is stored locally in the browser — no account or server required.

Application repository: github.com/auxkit/Tally


Quick start

Prerequisites

Tool Version
Bun ≥ 1.0
Node.js (optional fallback) ≥ 18

1 — Clone and install

git clone https://github.com/auxkit/Tally.git
cd Tally
bun install

2 — Start the development server

bun run dev

Open http://localhost:5173 in your browser.

3 — Run checks

bun run lint     # ESLint
bun run test     # Vitest (unit tests)
bun run build    # TypeScript + Vite production build

All three commands must pass before a pull request can be merged. See Contributing for the full workflow and Architecture for a deeper look at the codebase.