feat: make forms functional

This commit is contained in:
Stavros
2025-05-08 18:08:56 +03:00
parent fd96f39d3a
commit 56ae246ff4
18 changed files with 870 additions and 3387 deletions

22
frontend/Dockerfile.dev Normal file
View File

@@ -0,0 +1,22 @@
FROM oven/bun:1.1.45-alpine
WORKDIR /frontend
COPY ./frontend/package.json ./
COPY ./frontend/bun.lock ./
RUN bun install
COPY ./frontend/public ./public
COPY ./frontend/src ./src
COPY ./frontend/eslint.config.js ./
COPY ./frontend/index.html ./
COPY ./frontend/tsconfig.json ./
COPY ./frontend/tsconfig.app.json ./
COPY ./frontend/tsconfig.node.json ./
COPY ./frontend/vite.config.ts ./
EXPOSE 5173
ENTRYPOINT ["bun", "run", "dev"]