fix: system_all_log.html ReferenceError and other updates

This commit is contained in:
2026-01-17 14:06:27 +09:00
parent cf19d79ef8
commit 2681f5a096
24 changed files with 820 additions and 141 deletions

16
restart_mac.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# FlaskFarm 재시작 스크립트
# 사용법: ./restart.sh
cd /Volumes/WD/Users/Work/python/flaskfarm
# 기존 FlaskFarm 프로세스 종료
pkill -9 -f "python main.py" 2>/dev/null
lsof -ti :9099 | xargs kill -9 2>/dev/null
# 잠시 대기
sleep 1
# 백그라운드 없이 재시작 (터미널에서 직접 실행용)
echo "FlaskFarm 시작 중..."
./gommi_mac.sh