Bringt das Backend vom initialen Skeleton auf den aktuellen Arbeitsstand (Clean Architecture: domain → application → infrastructure → api). Wesentliche Bereiche: - ERP-Anbindung (MSSQL-Pull der Touren, Import-Scheduler, Rückschreiben) - Lieferlebenszyklus: Scan/Hold/Cancel/Complete, Gutschriften, Notizen, Bild-Anhänge, Unterschriften, PDF-Lieferreport → DOCUframe - Stammdaten: Kunden, Artikel, Lager, Zahlungsarten, Services - Keycloak-JWT-Gate + Fahrer-Provisionierung via Admin-API - Admin-API-Key-Gate (X-Admin-Api-Key) für Maschinen-Endpunkte Jüngste Änderungen dieser Session: - Belegspezifische Kontaktdaten: alle ERP-Adressen (Beleg-/Liefer-/ Rechnungsadresse, Ansprechpartner, Kundenstamm) mit Telefon/Mobil/ E-Mail werden gesynct (Migration 0029, MSSQL-Query, TourDetails) - Konfiguration von .env (envy/dotenvy) auf config.toml (toml/serde) umgestellt; Vorlage config.example.toml, Pfad via HOLZLEITNER_CONFIG Nicht im Repo (per .gitignore): config.toml (Secrets), data/ (Laufzeit-/ Kundendaten), demo.mp4, .claude/, variocontrol-ai/. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
631 B
TOML
23 lines
631 B
TOML
[package]
|
|
name = "holzleitner-application"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[features]
|
|
# Aktiviert utoipa::ToSchema-Derives auf DTOs + propagiert das Feature in
|
|
# das Domain-Crate, damit Antwort-Schemata vollständig generiert werden.
|
|
openapi = ["dep:utoipa", "holzleitner-domain/openapi"]
|
|
|
|
[dependencies]
|
|
holzleitner-domain.workspace = true
|
|
serde.workspace = true
|
|
async-trait.workspace = true
|
|
thiserror.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
sha2.workspace = true
|
|
imagesize.workspace = true
|
|
utoipa = { workspace = true, optional = true }
|