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>
59 lines
1.0 KiB
Markdown
59 lines
1.0 KiB
Markdown
# 正确的访问地址
|
||
|
||
## ⚠️ 重要提醒
|
||
|
||
前端运行在 **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** 就能看到系统了! |