الملفات
ghaymah-exam-amirkasseb-sre/q5-mithal-monitor/entrypoint.sh
2026-07-26 19:57:48 +03:00

16 أسطر
378 B
Bash

#!/bin/sh
set -e
export PYTHONUNBUFFERED=1
# Ensure dashboard.html points to index.html to avoid code duplication
if [ ! -L dashboard.html ] && [ ! -f dashboard.html ]; then
ln -sf index.html dashboard.html
fi
echo "Starting Mithal website background monitor..."
python3 monitor.py &
echo "Starting Mithal web dashboard on port 8080..."
exec python3 -m http.server 8080