Erste Version mit spezifischen Suchfeldern und Teilen-Funktion

This commit is contained in:
2025-03-17 20:13:23 +01:00
parent 5a2806c1cd
commit fc6537439f
5 changed files with 221 additions and 50 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3.8'
services:
web:
build: .
ports:
- "5001:5000"
volumes:
- .:/app
environment:
- FLASK_APP=app.py
- FLASK_ENV=development
- FLASK_DEBUG=1
command: flask run --host=0.0.0.0