Files
TaskPool/docs/guide/getting-started.md
admin e6956aa001 Initial commit: TaskPool React panel
- React frontend with route-level code splitting
- Backend rebranded from Baihu to TaskPool
- DB brand migration script and local compatibility
2026-07-26 08:43:52 +08:00

44 lines
1.7 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 访问面板
部署成功并启动容器后,您只需通过浏览器即可访问taskpool。
## 默认账号
- **访问地址**`http://localhost:8052` (或您配置的宿主机端口)
- **用户名**`admin`
- **密码**:首次启动成功后,系统会为管理员账号生成 **12 位随机初始密码** 并打印在容器启动日志中。
> **如何查找初始密码**
> 运行容器后,在命令行执行:
> ```bash
> docker logs taskpool | grep "管理员账号创建成功"
> ```
> 找到包含密码的内容后登录,登录后建议首选操作:**修改管理员密码**。
---
## 登录后的首要配置
### 1. 修改密码
在右上角用户头像下拉菜单选择「个人设置」进行账号安全修改。
### 2. 系统调度设置
在「系统设置」>「调度设置」中,可以根据服务器资源微调任务队列的并发数(默认 4)和最大队列大小(默认 100)。
### 3. 环境与依赖
如果您需要执行特定语言或脚本包,请先进入「编程语言」页面确认所需的环境已安装(如已安装 Python3.x 或 Node.js.x)。
---
## 面板功能一览
| 模块 | 说明 |
| :--- | :--- |
| **仪表盘 (Dashboard)** | 实时监控任务执行动态、容器状态和资源占用频率情况。 |
| **定时任务 (Tasks)** | 管理和调度各种 Cron 脚本。 |
| **脚本管理 (Scripts)** | 在线编辑、上传项目源代码。 |
| **在线终端 (Terminal)** | 直接操作容器环境进行运维和调试。 |
| **消息推送 (Notify)** | 配置各类通知渠道。 |
| **环境变量 (Environments)** | 管理脚本所需的各种隐私信息、持久配置。 |
| **个人设置 (Settings)** | 调整站点 UI 和账号安全信息。 |