Remove unnecessary files

هذا الالتزام موجود في:
2026-07-29 15:12:02 -04:00
الأصل f450e23dab
التزام 2af6128a8d
12 ملفات معدلة مع 1097 إضافات و27 حذوفات

عرض الملف

@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x start.sh
EXPOSE 8080
CMD ["./start.sh"]

عرض الملف

@@ -0,0 +1,11 @@
#!/bin/bash\
# Runs the background monitoring loop (monitor.py) and serves the
# dashboard + monitor_data.json over HTTP at the same time.
set -e
# Start the monitor in the background; it updates monitor_data.json every 60s
python monitor.py &
# Serve the current directory (dashboard.html + monitor_data.json)
python -m http.server 8080

تم حذف اختلاف الملف لأن الملف كبير جداً تحميل الاختلاف

عرض الملف

@@ -0,0 +1 @@
requests