first commit

This commit is contained in:
2026-03-14 20:49:11 -04:00
commit 08768723bc
31 changed files with 8984 additions and 0 deletions

6
Dockerfile.dev Normal file
View File

@@ -0,0 +1,6 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
# source code is bind-mounted at runtime — node_modules come from this image layer
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]