feat: initial vpsbot8 multi-vps control bot

This commit is contained in:
vpsbot8
2026-03-16 19:56:50 +05:30
commit 7d1c09d992
4 changed files with 1766 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@@ -0,0 +1,15 @@
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.python-version
.env
.env.*
config.json
data/
keys/
*.db
*.sqlite
*.sqlite3
*.log

12
README.txt Normal file
View File

@@ -0,0 +1,12 @@
VPS 多机中控 - MVP
当前功能:
- Telegram Bot 启动
- 添加节点
- 节点列表
- SSH 测试连接
- 系统概览
- 删除节点
部署目录建议: /opt/vpsbot8
服务名建议: vpsbot8.service

1737
app.py Normal file

File diff suppressed because it is too large Load Diff

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
python-telegram-bot==22.3
paramiko==3.5.1