[32788f42] feat(list-generator): create React app and FastAPI backend for PDF list generation

This commit is contained in:
2026-03-18 19:20:59 +00:00
parent 16cd760dac
commit 21c8ff66fd
30 changed files with 4525 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
version: "3.8"
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
volumes:
- ./backend:/app
- data-volume:/app/data
ports:
- "8008:8000"
environment:
- HOST=0.0.0.0
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3008:80"
depends_on:
- backend
volumes:
data-volume: