7 أسطر
162 B
Bash
7 أسطر
162 B
Bash
#!/bin/sh
|
|
# Runs the monitor loop in the background and serves the dashboard folder.
|
|
|
|
python3 /app/monitor.py &
|
|
|
|
cd /app/dashboard && python3 -m http.server 8080
|