Aufteilung der README.md in modulare Dokumentation

- Haupt-README.md behält Übersicht und Links zu detaillierten READMEs
- steps/advoware_proxy/README.md: Detaillierte Dokumentation der 4 Proxy-Steps
- steps/vmh/README.md: Detaillierte Dokumentation der Webhook-Receiver und Sync-Steps
- Verbesserte Navigation und modulare Dokumentationsstruktur
This commit is contained in:
root
2025-10-20 11:46:30 +00:00
parent 805d8c7362
commit d715fca5f5
3 changed files with 384 additions and 2 deletions

View File

@@ -81,6 +81,8 @@ Die Proxy-Endpunkte spiegeln die Advoware-API wider:
curl -X GET "http://localhost:3000/api/advoware/employees"
```
Für detaillierte Informationen zu den Proxy-Steps siehe [steps/advoware_proxy/README.md](steps/advoware_proxy/README.md).
### EspoCRM Webhooks
Webhooks werden automatisch von EspoCRM gesendet für Änderungen an Beteiligte-Entitäten:
@@ -89,6 +91,8 @@ Webhooks werden automatisch von EspoCRM gesendet für Änderungen an Beteiligte-
- **Update**: `/webhooks/vmh/beteiligte/update`
- **Delete**: `/webhooks/vmh/beteiligte/delete`
Für detaillierte Informationen zu den Webhook- und Sync-Steps siehe [steps/vmh/README.md](steps/vmh/README.md).
### Synchronisation
Die Synchronisation läuft event-driven ab:
@@ -120,12 +124,12 @@ Die Flows sind in `motia-workbench.json` definiert:
```
bitbylaw/
├── steps/
│ ├── advoware_proxy/ # API Proxy Steps
│ ├── advoware_proxy/ # API Proxy Steps - siehe [README](steps/advoware_proxy/README.md)
│ │ ├── advoware_api_proxy_get_step.py
│ │ ├── advoware_api_proxy_post_step.py
│ │ ├── advoware_api_proxy_put_step.py
│ │ └── advoware_api_proxy_delete_step.py
│ └── vmh/
│ └── vmh/ # VMH Webhook & Sync Steps - siehe [README](steps/vmh/README.md)
│ ├── webhook/ # Webhook Receiver Steps
│ │ ├── beteiligte_create_api_step.py
│ │ ├── beteiligte_update_api_step.py