Initial commit: Telegram Management System
Some checks failed
Deploy / deploy (push) Has been cancelled

Full-stack web application for Telegram management
- Frontend: Vue 3 + Vben Admin
- Backend: NestJS
- Features: User management, group broadcast, statistics

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
你的用户名
2025-11-04 15:37:50 +08:00
commit 237c7802e5
3674 changed files with 525172 additions and 0 deletions

59
CORRECT_ACCESS_URL.md Normal file
View File

@@ -0,0 +1,59 @@
# 正确的访问地址
## ⚠️ 重要提醒
前端运行在 **8890** 端口,不是 8080
## 正确的访问地址:
### 🌐 前端系统
**http://localhost:8890**
### 🚀 功能页面直达
1. **登录页面**
```
http://localhost:8890/#/login
```
2. **Telegram 快速访问**(推荐)
```
http://localhost:8890/#/tgAccountManage/telegramQuickAccess
```
3. **账号列表**
```
http://localhost:8890/#/tgAccountManage/tgAccountList
```
### 📡 后端 API
**http://localhost:3000**
## 端口说明
- **8890**: Telegram 管理系统前端
- **3000**: Telegram 管理系统后端 API
- **8080**: 被 Dify 占用
- **8888**: 被 Docker 占用
## 快速开始
1. 打开浏览器
2. 访问 **http://localhost:8890**
3. 使用账号密码登录
4. 进入"账号管理" → "Telegram快速访问"
## 如果无法访问
检查前端是否运行:
```bash
ps aux | grep vue-cli-service
```
重启前端:
```bash
cd frontend
npm run serve
```
现在去 **http://localhost:8890** 就能看到系统了!