Aster Debug Checklist
Distro and Gate runtime debugging checklist.
Start from the active product runtime:
bun run --filter @aster/distro devThen verify the gateway:
curl http://127.0.0.1:4040/gateway/healthcurl http://127.0.0.1:4040/gateway/readycurl http://127.0.0.1:4040/__aster/web/bootstrapFor web development, bun run dev:web starts Distro first, waits for bootstrap readiness, and then starts the Vite web shell.
When debugging runtime composition, inspect packages/distro/src/index.ts for the product graph and packages/gate/src/runtime.ts for graph ordering and startup phases.
Avoid starting from packages/seed; it is deprecated and excluded from the
active workspace.