First commit

This commit is contained in:
AlacrisDevs
2026-02-04 23:01:44 +02:00
commit cfec43f7ef
78 changed files with 9509 additions and 0 deletions

18
Dockerfile.dev Normal file
View File

@@ -0,0 +1,18 @@
FROM node:22-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source (will be overwritten by volume mount)
COPY . .
# Expose Vite dev server port
EXPOSE 5173
# Run dev server
CMD ["npm", "run", "dev", "--", "--host"]