cang-ying/scripts/restart-eed.sh
Zhuyuan Operations ce32073d07 D205 面板功能大升级+本地漫剧管线+经验自动机制+飞书资料归档
- 面板: 会话持久化(oc_sess.json)/余额实时/文件栏(搜索+MD+拖拽)/朗读(edge-tts)/工具过程实时显示/漫剧画布
- 面板: 经验自动检索注入+存经验按钮(experience.py)
- 管线: local_motion本地运镜/IMAGE-FIRST-GUIDE/LOCAL-PIPELINE-V1
- 经验: EED-EXPER-014 面板工程+管线+飞书扒取全记录
- 资料: 飞书《清欢AIGC伪真人短剧全流程》归档
2026-08-03 22:55:02 +08:00

12 lines
588 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 重启蛋蛋面板改造版resume 会话 + 自动压缩 + 图片视频通道)
# 修复唤醒bugpkill 加宽匹配 eed_web.py确保裸名/bash包装的残留面板实例也被杀干净
pkill -f "eed_web.py" 2>/dev/null
sleep 1
cd /home/ls/cang-ying/scripts
nohup python3 eed_web.py > /tmp/eed_web.log 2>&1 &
sleep 1
PORT=$(grep -oE 'http://127\.0\.0\.1:[0-9]+/' /tmp/eed_web.log | head -1)
echo "🟢 面板已重启: ${PORT:-自动端口(见 /tmp/eed_web.log}"
echo "刷新浏览器页面即可使用新版(会话持久化+自动压缩+发图看图)"