diff --git a/nephelios.yml b/nephelios.yml index f215853..5f170a4 100644 --- a/nephelios.yml +++ b/nephelios.yml @@ -124,6 +124,8 @@ services: image: zuhowks/nephelios-front:latest networks: - nephelios_overlay + ports: + - "5173:5173" deploy: labels: - "traefik.enable=true" diff --git a/src/main.rs b/src/main.rs index eadda05..489e651 100644 --- a/src/main.rs +++ b/src/main.rs @@ -142,6 +142,8 @@ async fn main() { println!("🚀 Server running on http://{}:{}", ip_addr, app_port); + println!("🚀 Front running on http://localhost:5173"); + // Créer un canal pour la notification de shutdown let (shutdown_tx, mut shutdown_rx) = broadcast::channel(1);