# telegram机器人管理 **Repository Path**: jhpw/telegram-robot-management ## Basic Information - **Project Name**: telegram机器人管理 - **Description**: Telegram bot 机器人批量管理器 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-27 - **Last Updated**: 2026-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Telegram 机器人 管理器 这是一个 **方便**,**简单** Telegram 机器人 的管理工具,可以同时管理多个机器人。 ## 用途 * 用于正式场景,所有**私密数据均已加密**,快捷管理您的机器人 * 在本地运行,可用于快速测试,调试机器人 ## 服务端 go + mysql 镜像: [docker hub](https://hub.docker.com/r/jianghong2020/tg-bot-manager-server) 源码: [github](https://github.com/jianghong2021/tel-bot-manager-server) ## 客户端 vue + ts 镜像: [docker hub](https://hub.docker.com/r/jianghong2020/tg-bot-manager-client) 源码: [github](https://github.com/jianghong2021/tel-bot-manager-client) 截屏 ![tg-manager](/preview/tg-bot-main.jpg) 默认管理账号: admin, 1234 ## 功能特性 * **可视化配置命令**:通过直观的界面配置 Bot 的命令。 * **设置响应消息**:为不同的命令或事件设置自定义的回复消息。 * **支持消息源**:可从第三方 API 获取信息,并返回到机器人。 * **自定义常量**:用于快速修改预设消息,而无需更改。 * **定时任务**:配置定时推送任务,方便实现定时消息推送。 ## 使用说明 此工具旨在简化 Telegram Bot 的管理流程,提供图形化操作界面,降低配置复杂度。 ### docker compose(推荐) 无需配置.env,由环境变量决定,config.json中无需配置msyql ```shell git clone https://github.com/jianghong2021/tg-bog-manager cd tg-bog-manager docker compose up -d ``` 访问 `http://127.0.0.1:8081` ### 手动安装 安装api服务,需要配置 `config.json` ```shell git clone https://github.com/jianghong2021/tel-bot-manager-server go mod download go run main.go ``` 安装web客户端,需要配置 `.env` ```shell git clone https://github.com/jianghong2021/tel-bot-manager-client npm install npm run dev ```