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

View File

@@ -0,0 +1,45 @@
services:
# Angular Frontend
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.dev
# develop:
# watch:
# - path: .
# action: sync
# target: /app
container_name: angular-frontend
ports:
- "4200:4200"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
depends_on:
- backend
networks:
- app-network
# Express Backend
backend:
build:
context: ./backend
dockerfile: Dockerfile.dev
container_name: express-backend
ports:
- "3000:3000"
volumes:
- ./backend:/app
- /app/node_modules
environment:
- NODE_ENV=development
- PORT=3000
networks:
- app-network
networks:
app-network:
driver: bridge