Text Extraction Done, UI Fixes Done, Extracted Template Layout Saved in DB

This commit is contained in:
2026-07-12 14:24:17 +05:30
parent 3163bb213e
commit 3d6614f408
79 changed files with 3139 additions and 81 deletions

View File

@@ -7,14 +7,14 @@ services:
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: "${DB_PASSWORD}"
POSTGRES_DB: document_engine
POSTGRES_DB: ocr
ports:
- "7925:5432"
- "5432:5432"
volumes:
- docengine_pgdata_prod:/var/lib/postgresql/data
- ./sql/001_create_schema.sql:/docker-entrypoint-initdb.d/001_create_schema.sql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d document_engine"]
test: ["CMD-SHELL", "pg_isready -U postgres -d ocr"]
interval: 10s
timeout: 5s
retries: 5