Summary
In this chapter, we spent some valuable time exploring and understanding our sample project’s core components, how they work together, and their distinctive roles. For the sake of simplicity, we split the analysis into two parts: the .NET back-end ecosystem, where we inspected the ASP.NET Core Web API project (HealthCheck.Server), and the Angular front-end architecture, which was dedicated to the Angular project (healthcheck.client). We’ve seen how each project comes with its own configuration files, folder structure, naming conventions, and overall scope.
At the end of the day, we’ve met the end goal of this chapter and learned a fair number of useful things. We know the location and purpose of both server-side and client-side source code files. We are aware of most ASP.NET Core and Angular configuration settings and parameters. We also learned how to change these settings to meet our needs, such as the Web API routing endpoints, and insert new stuff...