Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,23 @@ cd packages/db && bun run db:migrate
bun run dev:full # Starts Next.js app and realtime socket server
```

Or run separately: `bun run dev` (Next.js) and `cd apps/sim && bun run dev:sockets` (realtime).
If your machine is memory-constrained or `dev:full` appears stuck, use the capped or minimal
registry variants:

```bash
bun run dev:full:capped # Caps the Next.js dev server heap at 4GB
bun run dev:full:minimal-registry # Loads the smaller block registry during local development
```

Or run the servers separately in two terminals:

```bash
cd apps/sim && bun run dev # Next.js app
cd apps/realtime && bun run dev # Realtime socket server
```

If the Next.js dev server keeps reusing a bad cache, clear it once with
`cd apps/sim && bun run dev:clean`, then start the dev server again.

## Chat API Keys

Expand Down