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

View File

@@ -0,0 +1,48 @@
-- 添加Rola-IP代理平台到数据库
-- 执行此SQL文件将Rola-IP平台配置插入到proxy_platform表中
-- 检查是否已存在Rola-IP配置
SELECT COUNT(*) as existing_count FROM proxy_platform WHERE platform = 'rola-ip';
-- 插入Rola-IP平台配置如果不存在
INSERT INTO proxy_platform (
platform,
description,
apiUrl,
authType,
apiKey,
username,
password,
proxyTypes,
countries,
concurrentLimit,
rotationInterval,
remark,
isEnabled,
createdAt,
updatedAt
)
SELECT * FROM (
SELECT
'rola-ip' as platform,
'Rola-IP专业代理IP服务平台支持住宅IP、数据中心IP、移动IP等多种类型' as description,
'https://admin.rola-ip.co' as apiUrl,
'userPass' as authType,
'' as apiKey,
'' as username,
'' as password,
'residential,datacenter,mobile,static_residential,ipv6' as proxyTypes,
'US,UK,DE,FR,JP,KR,AU,CA,BR,IN,SG,HK,TW,RU,NL' as countries,
100 as concurrentLimit,
300 as rotationInterval,
'支持多种代理类型和15个国家/地区提供住宅IP、数据中心IP、移动IP、静态住宅IP和IPv6代理服务。需要配置用户名和密码后启用。' as remark,
0 as isEnabled,
NOW() as createdAt,
NOW() as updatedAt
) AS tmp
WHERE NOT EXISTS (
SELECT 1 FROM proxy_platform WHERE platform = 'rola-ip'
);
-- 验证插入结果
SELECT * FROM proxy_platform WHERE platform = 'rola-ip';