ADDED core backend to repo #3

This commit is contained in:
Marek Lesko
2025-07-15 11:03:25 +00:00
parent 18740f5119
commit 6f9864e6ac
15 changed files with 295 additions and 0 deletions

23
Api/appsettings.json Normal file
View File

@@ -0,0 +1,23 @@
{
/*
The following identity settings need to be configured
before the project can be successfully executed.
For more info see https://aka.ms/dotnet-template-ms-identity-platform
*/
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "qualified.domain.name",
"TenantId": "22222222-2222-2222-2222-222222222222",
"ClientId": "11111111-1111-1111-11111111111111111",
"Scopes": "access_as_user",
"CallbackPath": "/signin-oidc"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}