Improve the frontend and repository layer

This commit is contained in:
Urtzi Alfaro
2025-10-23 07:44:54 +02:00
parent 8d30172483
commit 07c33fa578
112 changed files with 14726 additions and 2733 deletions

View File

@@ -24,6 +24,7 @@ from app.api import (
food_safety_operations,
dashboard,
analytics,
sustainability,
internal_demo
)
@@ -103,7 +104,11 @@ class InventoryService(StandardFastAPIService):
"dashboard_analytics",
"business_model_detection",
"real_time_alerts",
"regulatory_reporting"
"regulatory_reporting",
"sustainability_tracking",
"sdg_compliance",
"environmental_impact",
"grant_reporting"
]
@@ -127,6 +132,7 @@ service.add_router(food_safety_alerts.router)
service.add_router(food_safety_operations.router)
service.add_router(dashboard.router)
service.add_router(analytics.router)
service.add_router(sustainability.router)
service.add_router(internal_demo.router)