[30388f42] feat: Full stack integration and documentation overhaul
This commit is contained in:
34
company-explorer/README.md
Normal file
34
company-explorer/README.md
Normal file
@@ -0,0 +1,34 @@
|
||||
# Company Explorer (Robotics Edition)
|
||||
|
||||
Der **Company Explorer** ist das zentrale Data-Mining- und Anreicherungs-Tool für die GTM Engine. Er dient als "Vorratskammer" für Leads und als Intelligence-Layer.
|
||||
|
||||
## 📚 Dokumentation
|
||||
|
||||
* **Architektur & Spezifikation:** [➡️ `docs/ARCHITECTURE_AND_SPECS.md`](./docs/ARCHITECTURE_AND_SPECS.md)
|
||||
* **Technisches Deployment:** Siehe Root `docker-compose.yml`.
|
||||
|
||||
## 🛠️ Kern-Funktionen
|
||||
|
||||
* **Import:** Excel-basierter Import von CRM-Dumps und Messe-Listen.
|
||||
* **Deduplizierung:** Intelligenter Abgleich gegen Bestandsdaten.
|
||||
* **Enrichment:** Automatisiertes Scraping von Websites, Impressum und Wikipedia.
|
||||
* **Intelligence:** KI-basierte Klassifizierung (Verticals) und Potenzial-Analyse (Metriken).
|
||||
* **API:** REST-Schnittstelle für den `lead-engine` Connector.
|
||||
|
||||
## 🚀 Entwicklung
|
||||
|
||||
### Frontend (React)
|
||||
```bash
|
||||
cd frontend
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Backend (FastAPI)
|
||||
```bash
|
||||
cd backend
|
||||
python -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
uvicorn app:app --reload
|
||||
```
|
||||
Reference in New Issue
Block a user