Sprint 0: Backend, Docker, KI-Layer mit Free/Premium-Trennung

This commit is contained in:
rene 2026-04-12 16:39:34 +02:00
parent 84f49fafcf
commit 00be2bbcd5
17 changed files with 1107 additions and 0 deletions

19
docker-compose.yml Normal file
View file

@ -0,0 +1,19 @@
services:
banyaro:
build: .
container_name: ban-yaro
restart: unless-stopped
ports:
- "3010:8000" # DS-intern, NPM leitet banyaro.app weiter
volumes:
- ./data:/data # SQLite + Media persistent
env_file:
- .env
environment:
- DB_PATH=/data/banyaro.db
- MEDIA_DIR=/data/media
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/docs"]
interval: 30s
timeout: 10s
retries: 3