-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.json
More file actions
43 lines (43 loc) · 956 Bytes
/
appsettings.json
File metadata and controls
43 lines (43 loc) · 956 Bytes
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
37
38
39
40
41
42
43
{
"ConnectionStrings": {
"AuditDb": "",
"DeliusRunningPictureDb": "",
"OfflocRunningPictureDb": "",
"ClusterDb": ""
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft": "Information",
"System": "Warning"
}
},
"WriteTo": [
{ "Name": "Console" },
{
"Name": "File",
"Args": {
"path": "../logs/API-.txt",
"rollingInterval": "Day"
}
}
],
"Enrich": ["FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId"]
},
"AllowedHosts": "*",
"Authentication": {
"ApiKey": ""
},
"AzureAd": {
"TenantId": "c6874728-71e6-41fe-a9e1-2e8c36776ad8",
"Instance": "https://login.microsoftonline.com/",
"ClientId": "",
"Scopes": {
"Read": "dms.read",
"Write": "dms.write"
}
},
"IsDevelopment": "False"
}