forked from WrightSE/Hendrix-SOS-Resources
-
Notifications
You must be signed in to change notification settings - Fork 5
/
appsettings.json
36 lines (36 loc) · 1.05 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"TenantId": "0cf6c18c-d0d2-4a3f-83d0-663d620a63d3",
"ClientId": "6c003b0d-e4a0-4db7-ab95-ef0785aa43de",
"ClientCertificates": [
{
"SourceType": "StoreWithThumbprint",
"CertificateStorePath": "CurrentUser/My",
"CertificateThumbprint": "C11AC40DEC10DC1F48CEE6379C73FEB76074A7CD"
}
],
"CallbackPath": "/signin-oidc"
},
"DownstreamApi": {
"BaseUrl": "https://graph.microsoft.com/v1.0/",
"RelativePath": "me",
"Scopes": [
"user.read"
]
},
"ConnectionStrings": {
"DefaultConnection": "DataSource=app.db;Cache=Shared",
"ApplicationDbContextConnection": "Server=(localdb)\\mssqllocaldb;Database=SOS_Resources;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"SOSContextSQLite": "Data Source=SOS.db"
}
}