This repository contains a template for use in creating new web applications. See the instructions for setup and use.
[The SonarCloud badges require a SonarCloud project to be configured.]
Add background and project requirements.
This is an ASP.NET web application.
Add project ownership details.
- Visual Studio or similar
- .NET SDK
Complete the following tasks when the application is ready for deployment.
- Create server-specific
appsettings.json
andweb.config
files and add copies of them to theapp-config
GitHub repository. Do NOT commit server-specific settings files to the main repository. - Create Web Deploy Publish Profiles for each web server using the
Example-Server.pubxml
file as an example. - Configure the following external services as needed:
- Azure App registration to manage employee authentication. (Add configuration settings in the
AzureAd
section of the server settings file.) When configuring the app in the Azure Portal, add optional claims foremail
,family_name
, andgiven_name
under "Token configuration". - Raygun for crash reporting and performance monitoring. (Add the API key to the
RaygunSettings
section in a server settings file.) - SonarCloud for code quality and security scanning. (Update the project key in the
sonarcloud-scan.yml
workflow file and in the badges above.) - Better Uptime for site uptime monitoring. (No app configuration needed.)
- Azure App registration to manage employee authentication. (Add configuration settings in the
The solution contains the following projects:
- Domain — A class library containing the data models, business logic, and repository interfaces.
- AppServices — A class library containing the services used by an application to interact with the domain.
- LocalRepository — A class library implementing the repositories and data stores using static in-memory test data (for local development).
- EfRepository — A class library implementing the repositories and data stores using Entity Framework and a database (as specified by the configured connection strings).
- WebApp — The front end web application and/or API.
- TestData — A class library containing test data for development and testing.
There are also corresponding unit test projects for each (not counting the TestData
project).
The following settings section configures the data stores, authentication, and other settings for development purposes. To work with these settings, add an appsettings.Development.json
file in the root of the WebApp
folder with a DevSettings
section, and make your changes there. Here's a sample appsettings.Development.json
file to start out:
{
"DevSettings": {
"UseDevSettings": true,
"UseInMemoryData": true,
"UseEfMigrations": false,
"DeleteAndRebuildDatabase": true,
"UseAzureAd": false,
"LocalUserIsAuthenticated": true,
"LocalUserRoles": [],
"UseSecurityHeadersInDev": false,
"EnableWebOptimizer": false
}
}
- UseDevSettings — Indicates whether the following Dev settings should be applied.
- UseInMemoryData
- When
true
, theLocalRepository
project is used for repositories and data stores. Data is initially seeded from theTestData
project. - When
false
, theEfRepository
project is used, and a SQL Server database (as specified by the connection string) is created. (If the connection string is missing, then a temporary EF Core in-memory database provider is used. This option is included for convenience and is not recommended.)
- When
- UseEfMigrations — Uses Entity Framework database migrations when
true
. Whenfalse
, theDeleteAndRebuildDatabase
setting controls how the database is handled. (Only applies ifUseInMemoryData
isfalse
.) - DeleteAndRebuildDatabase — When set to
true
, the database is deleted and recreated on each run. When set tofalse
, the database is not modified on each run. (Only applies ifUseInMemoryData
andUseEfMigrations
are bothfalse
.) If the database does not exist yet, it will not be created if this is set tofalse
. The database is seeded with data from theTestData
project only whenUseEfMigrations
isfalse
andDeleteAndRebuildDatabase
istrue
. Otherwise, the data in the database is not changed. - UseAzureAd — If
true
, connects to Azure AD for user authentication. (The app must be registered in the Azure portal, and configuration added to the settings file.) Iffalse
, authentication is simulated using test user data. - LocalUserIsAuthenticated — Simulates a successful login with a test account when
true
. Simulates a failed login whenfalse
. (Only applies ifUseAzureAd
isfalse
.) - LocalUserRoles — Adds the listed App Roles to the logged in account. (Only applies if
LocalUserIsAuthenticated
istrue
.) - UseSecurityHeadersLocally — Sets whether to include HTTP security headers when running locally in the Development environment.
- EnableWebOptimizer — Enables the WebOptimizer middleware for bundling and minification of CSS and JavaScript files. (This is disabled by default to simplify debugging.)
There are two ways to seed user roles, depending on the authentication method chosen.
When authenticating as a test user (UseAzureAd
set to false
), the LocalUserRoles
setting determines the roles assigned to the user. Add the desired roles to the array using their short name. For example:
{
"LocalUserRoles": ["Staff", "SiteMaintenance"]
}
When authenticating using AzureAD (UseAzureAd
set to true
), roles can be seeded using the SeedUserRoles
setting. This setting is also used in production if needed to help seed initial admin roles. The roles are added to the user's account the first time they log in. For example:
{
"SeedUserRoles": [
{
"User": "[email protected]",
"Roles": ["UserAdmin", "Staff"]
}
]
}
In a production or staging environment (or if UseDevSettings
is set to false
or the DevSettings
section is missing), the settings are automatically set to production defaults as follows:
UseDevSettings = false,
UseInMemoryData = false,
UseEfMigrations = true,
DeleteAndRebuildDatabase = false,
UseAzureAd = true,
EnableWebOptimizer = true,
Here's a visualization of how the settings configure data persistence at runtime.
flowchart LR
subgraph SPL["'UseInMemoryData' = true"]
direction LR
D[Domain]
T["Test Data (in memory)"]
R[Local Repositories]
A[App Services]
W([Web App])
W --> A
A --> D
A --> R
R --> T
T --> D
end
flowchart LR
subgraph SPB["'UseInMemoryData' = false"]
direction LR
D[Domain]
T[Test Data]
R[EF Repositories]
A[App Services]
W([Web App])
B[(Database)]
W --> A
A --> D
R --> B
A --> R
T -->|Seed| B
B --> D
end
flowchart LR
subgraph SPD["Production or staging environment"]
direction LR
D[Domain]
R[EF Repositories]
A[App Services]
W([Web App])
B[(Database)]
W --> A
A --> D
A --> R
R --> B
B --> D
end