mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-27 15:13:37 +08:00
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>
786 B
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