Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ CPAMP has no analytics SDKs, cloud account dependency, or registration flow. By

CPA Manager Plus works with [CPA / CLIProxyAPI](https://github.com/router-for-me/CLIProxyAPI), an AI gateway that routes requests to OpenAI-compatible providers.

### Windows native launcher

Windows native release packages include `Start-CPA.cmd` and `Start-CPA.ps1` to start CPA and CPA Manager Plus together. The launcher validates process and port ownership, performs an authenticated GPT-5.5 request, and requires Manager Plus to persist the resulting usage event before opening the panel. It can also install a current-user Start Menu shortcut for `Win+S` search without administrator privileges.

See [Windows one-click launcher](docs/windows-launcher.md) for setup, shortcut management, and readiness details.

### Installer

For a guided deployment, run:
Expand Down Expand Up @@ -162,6 +168,7 @@ CPAMP can also run as a CPA-hosted panel on `:8317`, or as a standalone frontend
| Docker deployment | [Docker Deployment](https://seakee.github.io/CPA-Manager-Plus/docs/en/deployment/docker.html) |
| Native packages | [Native Packages](https://seakee.github.io/CPA-Manager-Plus/docs/en/deployment/native.html) |
| Native background control | [Native Background Control](https://seakee.github.io/CPA-Manager-Plus/docs/en/deployment/native-background-control.html) |
| Windows one-click launcher | [Windows one-click launcher](docs/windows-launcher.md) |
| Manager Server config, endpoints, data, and security | [Manager Server Guide](https://seakee.github.io/CPA-Manager-Plus/docs/en/operations/manager-server.html) |
| Reverse proxy | [Reverse Proxy](https://seakee.github.io/CPA-Manager-Plus/docs/en/deployment/reverse-proxy.html) |
| Migrate from old CPA-Manager | [Migration from CPA-Manager](https://seakee.github.io/CPA-Manager-Plus/docs/en/migration/from-cpa-manager.html) |
Expand Down
7 changes: 7 additions & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ CPAMP 没有分析 SDK、没有云账号依赖,也不需要注册账号。默

CPA Manager Plus 配合 [CPA / CLIProxyAPI](https://github.com/router-for-me/CLIProxyAPI) 使用,CPA 是一个把请求路由到 OpenAI-compatible 提供商的 AI Gateway。

### Windows 原生一键启动器

Windows 原生发布包包含 `Start-CPA.cmd` 和 `Start-CPA.ps1`,用于同时启动 CPA 与 CPA Manager Plus。启动器会验证进程与端口归属,发起一次经过认证的 GPT-5.5 请求,并要求 Manager Plus 将对应使用事件写入数据库后才打开面板。它还可以在无需管理员权限的情况下安装当前用户的开始菜单快捷方式,供 `Win+S` 搜索启动。

配置、快捷方式管理和业务就绪检查细节见 [Windows 一键启动器](docs/windows-launcher.md)。

### 安装脚本

想按向导部署,可以直接运行:
Expand Down Expand Up @@ -162,6 +168,7 @@ CPAMP 也支持作为 CPA 托管面板(`:8317`)或独立前端开发使用
| Docker 部署 | [Docker 部署](https://seakee.github.io/CPA-Manager-Plus/docs/deployment/docker.html) |
| 原生运行包 | [原生包部署](https://seakee.github.io/CPA-Manager-Plus/docs/deployment/native.html) |
| 原生包后台控制 | [原生包后台控制](https://seakee.github.io/CPA-Manager-Plus/docs/deployment/native-background-control.html) |
| Windows 一键启动器 | [Windows 一键启动器](docs/windows-launcher.md) |
| Manager Server 配置、接口、数据和安全 | [Manager Server 指南](https://seakee.github.io/CPA-Manager-Plus/docs/operations/manager-server.html) |
| 反向代理 | [反向代理](https://seakee.github.io/CPA-Manager-Plus/docs/deployment/reverse-proxy.html) |
| 从旧 CPA-Manager 迁移 | [从 CPA-Manager 迁移](https://seakee.github.io/CPA-Manager-Plus/docs/migration/from-cpa-manager.html) |
Expand Down
4 changes: 4 additions & 0 deletions bin/native/Start-CPA.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
setlocal
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0Start-CPA.ps1" %*
exit /b %ERRORLEVEL%
Loading