最初一个版本,已经初步实现各种功能

主页连接
远程命令
django
Gunicorn操作
This commit is contained in:
2025-08-28 20:44:35 +08:00
commit d559a85feb
22 changed files with 3841 additions and 0 deletions

25
config.json Normal file
View File

@@ -0,0 +1,25 @@
{
"servers": [
{
"alias": "测试服务器192.168.3.157",
"host": "192.168.3.157",
"port": 22,
"username": "xiaji",
"password": "xiaji",
"project_name": "statuspage",
"git_url": "http://192.168.3.241:3000/xiaji/webstatus",
"remote_directory": "/home/xiaji/",
"django_path": "/home/xiaji/"
},
{
"alias": "生产服务器",
"host": "192.168.1.200",
"port": 22,
"username": "admin",
"password": "your_password",
"project_name": "production_app",
"git_url": "https://github.com/example/production_app.git",
"remote_directory": "/home/admin/production_app"
}
]
}