feat: P0/P1/P2全部功能 — 四层泳道/视角切换/KPI看板/预警/差异反打/预算/知识面板/回顾会/情景预测/Excel导入/角色权限

This commit is contained in:
Hermes CI Fix
2026-07-12 17:46:08 +08:00
parent cdf00efd69
commit ee25d5fa1d
8871 changed files with 1778433 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
cd /root/cma-management/backend
PID=$(lsof -ti :8010 2>/dev/null)
if [ -n "$PID" ]; then
kill $PID 2>/dev/null
sleep 1
kill -9 $PID 2>/dev/null
sleep 1
fi
nohup uvicorn app.main:app --host 0.0.0.0 --port 8010 > /tmp/cma-backend.log 2>&1 &
echo "PID=$!"
sleep 3
lsof -i :8010
echo "=== LOG ==="
tail -5 /tmp/cma-backend.log