补充部分安装文档与readme引用

This commit is contained in:
2026-07-25 00:08:02 +08:00
parent 7cce698281
commit d4aef6dbb1
2 changed files with 169 additions and 0 deletions
+32
View File
@@ -125,7 +125,39 @@ go build -ldflags="-s -w" -o frpc-console .
---
## 🚀 快速开始
### 🐧 二进制安装(推荐)
适用于 Linux / Windows,无需 Docker,单文件运行。
👉 详见:[二进制安装指南](./INSTALL_BINARY.md)
### 🐳 Docker 部署(一键脚本)
适用于 Linux 服务器,自动编译 + 自动部署。
```bash
curl -sSL https://git.whitetop.xyz/lxh2875931338/frpc-console/raw/main/deploy.sh | sudo bash
```
👉 详见:[Docker 安装指南](./INSTALL_DOCKER.md)
### 🔧 源码编译
适合开发者或需要自定义配置的用户。
```bash
git clone https://git.whitetop.xyz/lxh2875931338/frpc-console.git
cd frpc-console
go mod tidy
go build -o frpc-console .
./frpc-console
```
---
首次访问 `http://localhost:9300` 注册管理员账户,然后导入你的 `frpc.toml` 即可开始使用。
---