-
Book Overview & Buying
-
Table Of Contents
Clean Architecture with .NET
By :
Before we publish the application, there are a few pieces to finish wiring up. The infrastructure is in place, but the application still needs to understand how to run in its new environment—where to find its database, how to authenticate, and which secrets to use.
In this section, we'll walk through configuring those pieces step by step. You'll update the application settings, move your secrets into Azure Key Vault, set the correct environment, and prepare the database. We'll wrap up by enabling publishing and downloading the publish profile so everything is ready to deploy.
To run the application in Azure, we'll need to ensure the correct appsettings files are in place and mapped to the environment the application expects. While the feature set remains the same as your local development setup, running in the cloud introduces a few environment-specific concerns, particularly how secrets are accessed...