I have created new app using following command.
dotnet new angular
I have added new controller and want to test using Postman.
How can I find the address of API which is running locally after executing following command.
dotnet run
As I understand when I execute following command:
dotnet run
It start both applications (Angular, Web API) simultaneously.
When I go to localhost it shows the UI / Angular App.
I want to find URL of the API to test it before deployment using Postman.