feat: frontend setup — React, TypeScript, Tailwind, auth, layout, routing

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 16:19:55 +05:00
parent bfe52bb9f8
commit 106c82bdf4
19 changed files with 467 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html