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"]

13
backend/package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs"
}

0
backend/server.js Normal file
View File