first commit

This commit is contained in:
2025-11-26 18:57:18 +03:00
commit 16c21a4e49
41 changed files with 1075 additions and 0 deletions

12
backend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY tsconfig.json .
COPY src ./src
EXPOSE 4000
CMD ["npm", "run", "dev"]