feat: init

This commit is contained in:
2026-03-27 12:18:36 +01:00
commit cc59a91fea
55 changed files with 21768 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
backend:
build: ./backend
ports:
- "3001:3001"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
frontend:
build: ./frontend
ports:
- "3000:3000"
depends_on:
- backend