-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
42 lines (42 loc) · 1003 Bytes
/
appsettings.Development.json
File metadata and controls
42 lines (42 loc) · 1003 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
{
"Bootstrap": {
"DashboardConfigPath": "dashboard.yaml"
},
"RuntimeState": {
"Enabled": true,
"DirectoryPath": "runtime-state/endpoints",
"CleanupEnabled": true,
"CleanupIntervalMinutes": 30,
"DeleteOrphanedStateFiles": true,
"OrphanedStateFileRetentionHours": 5,
"RecentSampleLimit": 25,
"NotificationHistoryLimit": 20
},
"Import": {
"MinimumRecommendedPollFrequencySeconds": 180
},
"Email": {
"Smtp": {
"Enabled": true,
"Host": "127.0.0.1",
"Port": 2525,
"UseSsl": false,
"Username": "",
"Password": "",
"FromAddress": "noreply@mail.com",
"FromName": "ApiHealthDashboard"
},
"Templates": {
"DirectoryPath": "Templates/Email",
"TextTemplateFileName": "notification.txt",
"HtmlTemplateFileName": "notification.html"
}
},
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}