Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.08 KB

File metadata and controls

52 lines (37 loc) · 1.08 KB

Developer Setup

Use this guide when working on the Kairo repository itself.

Requirements

  • Node.js 22 or newer
  • pnpm 9.12.0
  • Git
  • Rust and Tauri platform prerequisites when working on apps/desktop

Install

corepack enable
pnpm install

Verify

pnpm run doctor

doctor runs typecheck, lint, and tests across the workspace.

Run Locally

pnpm dev

This builds the dashboard, starts the local Kairo API, and starts the Vite web app.

Useful Commands

pnpm --filter @kairohq/cli exec tsx src/bin.ts --help
pnpm --filter @kairohq/cli exec tsx src/bin.ts init
pnpm --filter @kairohq/cli exec tsx src/bin.ts sweep
pnpm --filter @kairohq/web dev
pnpm --filter @kairohq/docs dev

Contributor References