initial commit

This commit is contained in:
2026-04-07 17:41:25 +02:00
commit 1ed9bdfa55
45 changed files with 4712 additions and 0 deletions

5
frontend/dev.Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
CMD ["npm", "run", "dev", "--", "--host"]