fix(storage-service): Update application URL in launch settings for local development

- Changed the application URL in `launchSettings.json` from `http://localhost:5000` to `http://localhost:5002` to avoid port conflicts during local development.
This commit is contained in:
Ho Ngoc Hai
2026-01-13 02:29:42 +07:00
parent 0b59b7d219
commit d7852cde79

View File

@@ -6,7 +6,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5000",
"applicationUrl": "http://localhost:5002",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}