Initial commit

This commit is contained in:
2026-06-02 18:59:31 +02:00
commit 8fca56e20e
29 changed files with 3898 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
services:
backend:
build:
context: ./backend
ports:
- "8000:8000"
volumes:
- ./data:/data
environment:
- DATA_DIR=/data
frontend:
build:
context: ./frontend
ports:
- "5173:80"
depends_on:
- backend