Getting ready for production
In this section, we’ll see how we can further refine our apps’ source code in order to get them ready for production usage. We’ll mostly deal with server-side and client-side caching, environment configuration, and so on. While we’re there, we’ll take the chance to learn some useful production optimization tips offered by our front-end and back-end frameworks.
More specifically, we’re going to cover the following:
- Configuring the endpoints, where we’ll see how we will set up the production endpoints (host names, aliases, and IP addresses) and SSL certificates throughout the chapter
- ASP.NET Core deployment tips, where we’ll learn how our back-end has been optimized for production usage
- Angular deployment tips, where we’ll review some strategies used by the Visual Studio template to optimize the front-end production-building phase
Let’s get to work!
...