Manuelle Änderungen in .gitignore

This commit is contained in:
2025-03-20 12:01:07 +01:00
parent e3e9900482
commit 73541796f6
2 changed files with 14 additions and 8 deletions

9
.gitignore vendored
View File

@@ -46,14 +46,7 @@ coverage.xml
.docker/
# Daten
spezexpo.csv
# Database
*.db
data/customers.db
data/customers.csv
docker-compose.yml
/data/*.csv
data/
# Virtual Environment
develop-eggs/

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
web:
build: .
ports:
- "5000:5000"
volumes:
- ./data:/app/data
environment:
- FLASK_APP=app.py
- FLASK_ENV=production
- LOGIN_PASSWORD=01ko86
- ALLOWED_IP_RANGES=213.178.68.218/29,192.168.0.0/24,192.168.177.0/24
command: flask run --host=0.0.0.0