Add initial codebase

This commit is contained in:
Leonardo Segala 2025-08-01 18:07:11 +02:00
parent 5fb2b8a791
commit 2bd81f859e
24 changed files with 2603 additions and 0 deletions

17
docker-compose.yml Normal file
View file

@ -0,0 +1,17 @@
services:
backend:
build: ./backend
ports:
- 5001:5000
environment:
NODE_ENV: development
volumes:
- ./backend:/app
frontend:
build: ./frontend
ports:
- 5173:5173
volumes:
- ./frontend:/app
- /app/node_modules