Adding landing page

This commit is contained in:
2025-11-21 02:48:52 +00:00
parent c467d805e6
commit 4cb433d76b
48 changed files with 11475 additions and 0 deletions

23
backend/Dockerfile.dev Normal file
View File

@@ -0,0 +1,23 @@
# Development Dockerfile for Express.js
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies (including dev dependencies)
RUN npm install
# Install nodemon globally for hot-reloading
RUN npm install -g nodemon
# Copy project files
COPY . .
# Expose port for Express server
EXPOSE 3000
# Start Express server with nodemon
CMD ["nodemon", "server.js"]