This commit is contained in:
sjk
2026-01-21 14:33:10 +08:00
parent c4711fc84f
commit 8f2f58b51c
21 changed files with 2358 additions and 727 deletions

11
stop.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# AI MIP 停止脚本
# 查找并杀死进程
pkill -f "python main.py"
if [ $? -eq 0 ]; then
echo "[INFO] 服务已停止"
else
echo "[WARN] 未找到运行中的服务"
fi