feat: complete scraper infrastructure and implement persistence fix [32788f42]

This commit is contained in:
2026-03-20 20:41:36 +00:00
parent 1bdd8af9ac
commit f27489b412
11 changed files with 3346 additions and 433 deletions

View File

@@ -188,7 +188,7 @@ services:
NOTION_TOKEN: "${NOTION_API_KEY}"
volumes:
- ./company-explorer:/app
- explorer_db_data:/data
- ./company-explorer/data:/data # Local bind mount for guaranteed persistence
- ./Log_from_docker:/app/logs_debug
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/docs"]
@@ -207,7 +207,7 @@ services:
- "8003:8000"
volumes:
- ./connector-superoffice:/app
- connector_db_data:/data
- ./connector-superoffice/data:/data # Persistent local DB storage
environment:
PYTHONUNBUFFERED: "1"
GEMINI_API_KEY: "${GEMINI_API_KEY}"
@@ -251,15 +251,12 @@ services:
MS_BOOKINGS_URL: "${MS_BOOKINGS_URL}"
volumes:
- ./lead-engine:/app
- lead_engine_data:/app/data
- ./lead-engine/data:/app/data # Local persistent database
# --- INFRASTRUCTURE SERVICES ---
volumes:
connector_db_data: {}
explorer_db_data: {}
lead_engine_data: {}
gtm_architect_data: {}
b2b_marketing_data: {}
transcription_uploads: {}