Implements Feature to cleanup authors freetext field

This commit is contained in:
quorploop 2025-12-21 21:18:05 +01:00
parent bcd210ce01
commit 64df8fb328
14 changed files with 804 additions and 310 deletions

27
docker-compose.yml Normal file
View file

@ -0,0 +1,27 @@
services:
scraper:
build:
context: ./scrape
dockerfile: Dockerfile
image: knack-scraper
container_name: knack-scraper
env_file:
- scrape/.env
volumes:
- knack_data:/data
restart: unless-stopped
transform:
build:
context: ./transform
dockerfile: Dockerfile
image: knack-transform
container_name: knack-transform
env_file:
- transform/.env
volumes:
- knack_data:/data
restart: unless-stopped
volumes:
knack_data: