From 07cb482edc0a5b5121c4e8866596ab9b0b176791 Mon Sep 17 00:00:00 2001 From: Ho Ngoc Hai Date: Mon, 12 Jan 2026 14:04:36 +0700 Subject: [PATCH] fix(config): Update application URL in launchSettings.json for development environment - Changed the application URL from http://localhost:5000 to http://localhost:5001 to align with updated service configurations. - This adjustment ensures proper routing during local development. --- .../src/IamService.API/Properties/launchSettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/iam-service-net/src/IamService.API/Properties/launchSettings.json b/services/iam-service-net/src/IamService.API/Properties/launchSettings.json index 6355d40b..4b1c2ac8 100644 --- a/services/iam-service-net/src/IamService.API/Properties/launchSettings.json +++ b/services/iam-service-net/src/IamService.API/Properties/launchSettings.json @@ -6,7 +6,7 @@ "dotnetRunMessages": true, "launchBrowser": true, "launchUrl": "swagger", - "applicationUrl": "http://localhost:5000", + "applicationUrl": "http://localhost:5001", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }