Initial commit

This commit is contained in:
nabeel
2026-05-27 13:58:05 +10:00
commit c2202ea0bb
89 changed files with 28855 additions and 0 deletions

13
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Frontend Dockerfile for React development server
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install && chmod +x ./node_modules/.bin/*
COPY . .
EXPOSE 3000
CMD ["npm", "start"]