feat: Integrated SQLite database and project history into B2B Marketing Assistant

- market_db_manager.py: Made DB_PATH configurable via environment variable.

- Dockerfile.b2b: Included market_db_manager.py in the B2B container image.

- docker-compose.yml: Configured separate DB paths and volumes for Market Intel and B2B Assistant.

- B2B Server: Added API routes for project management (list, load, save, delete).

- B2B UI: Implemented auto-save and a 'Project History' modal for loading past runs.
This commit is contained in:
2025-12-29 16:05:46 +00:00
parent 3503e8c459
commit 0a2d6076c4
6 changed files with 296 additions and 10 deletions

View File

@@ -45,6 +45,7 @@ COPY --from=frontend-builder /app/dist ./dist
# Copy the main Python orchestrator script from the project root
COPY b2b_marketing_orchestrator.py .
COPY market_db_manager.py .
# Copy Gemini API Key file if it exists in root
COPY gemini_api_key.txt .