From 31cde487520b56df68028afb7494828fa64af7ca Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 24 Mar 2026 17:34:39 +0000 Subject: [PATCH] fix: update web server URL port from 5000 to 5050 --- Marechai/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marechai/Program.cs b/Marechai/Program.cs index 49072bb5..9c76b8b6 100644 --- a/Marechai/Program.cs +++ b/Marechai/Program.cs @@ -43,7 +43,7 @@ public static class Program .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup() - .UseUrls("http://*:5000"); + .UseUrls("http://*:5050"); }) .Build(); } \ No newline at end of file