feat: Implement initial project setup including calendar synchronization scripts, dependency management, and Docker configuration.

This commit is contained in:
LagoESP
2026-01-15 21:40:53 +01:00
parent c559bb59c6
commit cfc6c68aa0
10 changed files with 680 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY sync_calendar.py .
CMD ["python", "sync_calendar.py"]