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

24
start-docker-deps.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
echo "Starting database dependencies with Docker..."
# Start only the database services
docker-compose -f docker-compose-simple.yml up -d
# Wait for services to be ready
echo "Waiting for services to start..."
sleep 10
# Check service status
echo ""
echo "Service Status:"
docker-compose -f docker-compose-simple.yml ps
echo ""
echo "Database services are running:"
echo " - MySQL: localhost:3306 (user: root, no password)"
echo " - MongoDB: localhost:27017"
echo " - Redis: localhost:6379"
echo " - RabbitMQ: localhost:5672 (Management UI: http://localhost:15672)"
echo ""
echo "To stop database services: docker-compose -f docker-compose-simple.yml down"