Daya

Frontend (Flask UI)

Application Flask qui sert les pages web (templates) et appelle le backend FastAPI pour les données.

Port

Port 3000 en local.

Lancer

Le backend doit tourner sur le port 8080 avant de lancer le frontend.

# Terminal 1 — Backend
make run-backend
# ou : uvicorn backend.main:app --reload --port 8080

# Terminal 2 — Frontend
make run-frontend
# ou : BACKEND_URL=http://localhost:8080 flask --app frontend.app run --port 3000

→ http://localhost:3000

Structure

Voir le README principal pour le tableau des composants et ports.