docs: make English the default docs language and fix link paths

This commit is contained in:
zhayujie
2026-05-31 17:52:22 +08:00
parent 126649f70f
commit 7bf4ef3d05
231 changed files with 8999 additions and 8974 deletions

View File

@@ -1,13 +1,13 @@
---
title: 一键安装
description: 使用脚本一键安装和管理 CowAgent
title: One-click Install
description: One-click install and manage CowAgent with scripts
---
项目提供了一键安装、配置、启动、管理程序的脚本,推荐使用脚本快速运行。
The project provides scripts for one-click install, configuration, startup, and management. Script-based deployment is recommended for quick setup.
支持 LinuxmacOSWindows 操作系统,需安装 Python 3.7 ~ 3.12(推荐 3.9)。
Supports Linux, macOS, and Windows. Requires Python 3.7-3.12 (3.9 recommended).
## 安装命令
## Install Command
<Tabs>
<Tab title="Linux / macOS">
@@ -22,37 +22,37 @@ description: 使用脚本一键安装和管理 CowAgent
</Tab>
</Tabs>
脚本自动执行以下流程:
The script automatically performs these steps:
1. 检查 Python 环境(需要 Python 3.7+
2. 安装必要工具(gitcurl 等)
3. 克隆项目代码到 `~/CowAgent`
4. 安装 Python 依赖和 Cow CLI
5. 引导配置 AI 模型和通信渠道
6. 启动服务
1. Check Python environment (requires Python 3.7+)
2. Install required tools (git, curl, etc.)
3. Clone project to `~/CowAgent`
4. Install Python dependencies and Cow CLI
5. Guided configuration for AI model and channel
6. Start service
运行后默认启动 Web 控制台,访问 `http://localhost:9899` 开始对话和管理Agent。
By default, the Web console starts after installation. Access `http://localhost:9899` to begin chatting.
<Note>
**服务器部署需要公网访问控制台时**,请在 `config.json` 中将 `web_host` 设为 `0.0.0.0`(默认仅监听 `127.0.0.1` 本机访问),同时强烈建议设置 `web_password` 启用鉴权。然后通过 `http://<server-ip>:9899` 访问,并确保防火墙/安全组放行 `9899` 端口。
**Deploying on a server?** By default `web_host` only listens on `127.0.0.1` (local access only). Set `web_host` to `0.0.0.0` in `config.json` to make the console reachable from outside, and set `web_password` to protect it. Don't forget to open port `9899` in your firewall or security group — ideally restricted to specific IPs.
</Note>
## 管理命令
## Management Commands
安装完成后,使用 `cow` CLI 管理服务:
After installation, use the `cow` command to manage the service:
| 命令 | 说明 |
| Command | Description |
| --- | --- |
| `cow start` | 启动服务 |
| `cow stop` | 停止服务 |
| `cow restart` | 重启服务 |
| `cow status` | 查看运行状态 |
| `cow logs` | 查看实时日志 |
| `cow update` | 更新代码并重启 |
| `cow install-browser` | 安装浏览器工具依赖 |
| `cow start` | Start service |
| `cow stop` | Stop service |
| `cow restart` | Restart service |
| `cow status` | Check run status |
| `cow logs` | View real-time logs |
| `cow update` | Update code and restart |
| `cow install-browser` | Install browser tool dependencies |
更多命令和用法参考 [命令文档](/cli/index)。
See the [Commands documentation](/cli/index) for more details.
<Note>
如果 `cow` 命令不可用,也可以使用 `./run.sh <命令>`Linux/macOS)或 `.\scripts\run.ps1 <命令>`Windows作为替代功能等效。
If the `cow` command is not available, you can use `./run.sh <command>` (Linux/macOS) or `.\scripts\run.ps1 <command>` (Windows) as a fallback. Both are functionally equivalent.
</Note>