Files
pi-dashboard/pi/run_all.py

16 lines
569 B
Python
Raw Normal View History

2026-02-15 21:11:33 +09:00
#!/usr/bin/env python3
"""Launch stats_server and audio_server as child processes."""
import subprocess, sys, signal
from pathlib import Path
d = Path(__file__).parent
procs = [
subprocess.Popen([sys.executable, d / "stats_server.py"]),
subprocess.Popen([sys.executable, d / "audio_server.py"]),
]
signal.signal(signal.SIGINT, lambda *_: [p.terminate() for p in procs])
signal.signal(signal.SIGTERM, lambda *_: [p.terminate() for p in procs])
print(f"Running stats_server (PID {procs[0].pid}) + audio_server (PID {procs[1].pid})")
for p in procs:
p.wait()