Initial commit

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-11 15:55:14 -04:00
commit 290ff0bc1e
41 changed files with 7998 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
EXPOSE 80
# Source is bind-mounted in docker-compose for live preview.
CMD ["sh", "-c", "npm install && npm run dev -- --host 0.0.0.0 --port 80"]