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>
45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
# 全局使用(任意目录启动)
|
||
|
||
|
||
如果你希望在任意项目目录直接运行 `claude-haha` 或 `claude-haha-desktop`,可以通过以下方式配置。配置完成后,`claude-haha` 会自动识别你当前所在的工作目录,而 `claude-haha-desktop` 会一键拉起本地 desktop 开发环境。
|
||
|
||
## macOS / Linux
|
||
|
||
在 `~/.bashrc` 或 `~/.zshrc` 中添加:
|
||
|
||
```bash
|
||
# 方式一:添加 PATH(推荐)
|
||
export PATH="$HOME/path/to/claude-code-haha/bin:$PATH"
|
||
|
||
# 方式二:alias
|
||
alias claude-haha="$HOME/path/to/claude-code-haha/bin/claude-haha"
|
||
alias claude-haha-desktop="$HOME/path/to/claude-code-haha/bin/claude-haha-desktop"
|
||
```
|
||
|
||
然后重新加载配置:
|
||
|
||
```bash
|
||
source ~/.bashrc # 或 source ~/.zshrc
|
||
```
|
||
|
||
## Windows (Git Bash)
|
||
|
||
在 `~/.bashrc` 中添加:
|
||
|
||
```bash
|
||
export PATH="$HOME/path/to/claude-code-haha/bin:$PATH"
|
||
```
|
||
|
||
## 验证
|
||
|
||
配置完成后,进入任意项目目录测试:
|
||
|
||
```bash
|
||
cd ~/your-other-project
|
||
claude-haha
|
||
# 启动后询问「当前目录是什么?」,应显示 ~/your-other-project
|
||
|
||
claude-haha-desktop
|
||
# 应自动拉起 3456 后端、2024 前端,并打开浏览器
|
||
```
|