feat: Add base files

This commit is contained in:
2025-04-16 16:04:34 +02:00
parent 96c2cb6a4f
commit a19f4f1aea
20 changed files with 3730 additions and 0 deletions

25
docker-compose.yaml Normal file
View File

@@ -0,0 +1,25 @@
version: "3.8"
services:
db:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: vulnapp
ports:
- "3306:3306"
volumes:
- ./db/init.sql:/docker-entrypoint-initdb.d/init.sql
backend:
build: ./backend
ports:
- "5000:5000"
depends_on:
- db
frontend:
build: ./frontend
ports:
- "3000:3000"
depends_on:
- backend