cc-haha/docs/en/desktop/01-quick-start.md
hzchat 253e9aade2 docs: document the desktop launcher workflow
Document claude-haha-desktop in the CLI guides and Web UI installation docs,
including the new English desktop pages referenced by the docs sidebar.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-22 18:49:14 +08:00

786 B

Desktop Quick Start

Start the desktop Web UI

One-command startup

From the project root, run:

./bin/claude-haha-desktop

If bin/ is already on your PATH, you can also run:

claude-haha-desktop

This will:

  • start the local API server on 127.0.0.1:3456
  • start the desktop frontend on 127.0.0.1:2024
  • open the browser automatically

Manual startup

If you need to debug the startup sequence manually:

# backend
SERVER_PORT=3456 bun run src/server/index.ts

# frontend
cd desktop
bun run dev --host 127.0.0.1 --port 2024

Then open http://127.0.0.1:2024.

Next steps

  • See Installation & Build for platform notes
  • See the Chinese desktop docs for the full UI walkthrough and architecture details