Initial commit: Project structure and layout

This commit is contained in:
2026-04-22 01:45:29 +08:00
commit 481555c257
67 changed files with 17248 additions and 0 deletions

24
server/Dockerfile.dev Normal file
View File

@@ -0,0 +1,24 @@
# Development Dockerfile for Backend (NestJS)
FROM node:20-alpine
# Install wget for healthcheck
RUN apk add --no-cache wget
# Set working directory
WORKDIR /usr/src/app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy tsconfig and other config files
COPY tsconfig*.json ./
COPY nest-cli.json ./
# Expose port
EXPOSE 3000
# Default command (will be overridden by docker-compose)
CMD ["npm", "run", "start:dev"]