16 lines
569 B
Python
16 lines
569 B
Python
|
|
#!/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()
|