fix: document ui submodule setup

This commit is contained in:
vince 2026-06-20 12:21:18 +02:00
parent 7a3a5b8df7
commit 831b1b6640
2 changed files with 7 additions and 4 deletions

View file

@ -15,14 +15,16 @@ validated dashboard model state inside the web app.
persistence, Playwright e2e checks, and container build.
- `packages/dashboard-model`: reusable dashboard schema, validation, and
generic model fixtures shared by apps and tooling.
- `packages/ui`: reusable dashboard React components, design tokens,
shadcn/radix primitives, generic fixtures, and Storybook. Component source is
grouped under `foundation`, `frames`, `operations`, and `telemetry` domains.
- `packages/ui`: Git submodule for the reusable dashboard React components,
design tokens, shadcn/radix primitives, generic fixtures, and Storybook.
Component source is grouped under `foundation`, `frames`, `operations`, and
`telemetry` domains.
- `docs/superpowers`: migration specs and execution plans used for this repo.
## Development
```sh
git submodule update --init --recursive
bun install
bun run dev
```
@ -127,6 +129,7 @@ The production build emits Vite client assets under `apps/web/dist/` and a Bun
server entry at `apps/web/build/index.js`. A minimal deployment flow is:
```sh
git submodule update --init --recursive
bun install --frozen-lockfile
bun run build
cd apps/web