[2ff88f42] Full End-to-End integration: Webhooks, Auto-Enrichment, Notion-Sync, UI updates and new Connector Architecture

This commit is contained in:
2026-02-19 16:05:52 +00:00
parent 0142f763f0
commit 138bb4acae
24 changed files with 1107 additions and 203 deletions

View File

@@ -0,0 +1,11 @@
import sys
import os
# Add backend to path so imports work
sys.path.append(os.path.join(os.getcwd(), "company-explorer"))
from backend.database import init_db
print("Initializing Database Schema...")
init_db()
print("Done.")