Terminal chat app scaffolded as a Bun monorepo with separate web and server workspaces.
web/
src/ # terminal UI app and TanStack file-based routes
server/
server.ts # backend HTTP API entry
bun installClient only:
bun run dev:webServer only:
bun run dev:serverRun both in one terminal:
bun run dev:allRoutes are generated from web/src/routes/:
bun --cwd web run generate-routes
