Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Commit 794c84b

Browse files
committed
Add folio-spec-worker for PDF to HTML conversion
- New worker that fills the missing worker-folio-spec gap - Uses PyMuPDF to extract text directly from PDF - Generates NLdoc spec format for html-writer - Includes Kubernetes pod manifest for deployment Fixes the end-to-end pipeline: PDF → accessible HTML
1 parent 7621d14 commit 794c84b

3 files changed

Lines changed: 413 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
Vault-app.docx.pdf
33

44

5+
folio-spec-worker-pod.yaml
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM python:3.11-slim
2+
3+
WORKDIR /app
4+
5+
RUN pip install --no-cache-dir pika minio PyMuPDF
6+
7+
COPY app.py .
8+
9+
CMD ["python", "-u", "app.py"]
10+

0 commit comments

Comments
 (0)