Initial commit: Schedule Planner

This commit is contained in:
2026-04-06 13:46:31 +00:00
commit b09cefad34
14 changed files with 9534 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.12-alpine
WORKDIR /app
COPY server.py .
COPY index.html sleep-buddy.html favicon.svg icon-180.png notebook.jpg manifest.json sw.js /app/static/
ENV DATA_DIR=/data STATIC_DIR=/app/static PORT=8080
EXPOSE 8080
CMD ["python3", "server.py"]