mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Wes <wesbillman@users.noreply.github.com> Co-authored-by: Pinky <44b8e82baa6e0e254e0208d68f335c283c94e7b78dd1fa10d5a49d3f13dd0435@sprout-oss.stage.blox.sqprod.co>
26 lines
627 B
Markdown
26 lines
627 B
Markdown
# Buzz
|
|
|
|
Desktop chat shell with:
|
|
|
|
- Tauri + React + TypeScript + Vite
|
|
- Tailwind CSS
|
|
- shadcn/ui-ready shared components
|
|
- Biome (lint/format/check)
|
|
- Feature-driven frontend structure
|
|
|
|
## Scripts
|
|
|
|
- `pnpm dev` - run the web frontend
|
|
- `pnpm tauri dev` - run the desktop app
|
|
- `pnpm build` - typecheck and build frontend
|
|
- `pnpm typecheck` - TypeScript checks
|
|
- `pnpm lint` - Biome lint
|
|
- `pnpm format` - Biome format (write)
|
|
- `pnpm check` - Biome check
|
|
|
|
## Structure
|
|
|
|
- `src/shared` - reusable app-wide code (`ui`, `lib`, `styles`)
|
|
- `src/features` - feature modules (vertical slices)
|
|
- `src/app` - top-level app composition
|