webcrawler v0.1

This commit is contained in:
mkrieger 2024-11-13 18:40:55 +01:00
parent e2d9a197c0
commit 008e2bc274
18 changed files with 681 additions and 0 deletions

11
docker-compose.yml Normal file
View file

@ -0,0 +1,11 @@
version: '3'
services:
web:
build: .
ports:
- "5000:5000"
environment:
- FLASK_APP=app
command: flask run --host=0.0.0.0 --port=5000
volumes:
- .:/app