-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
76 lines (76 loc) · 2.11 KB
/
Copy pathappsettings.json
File metadata and controls
76 lines (76 loc) · 2.11 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"DatabaseProvider": "SqlServer",
"ConnectionStrings": {
"OperationsFlowDatabase": "Data Source=operationsflow.db",
"OperationsFlowSqlServer": "Server=(localdb)\\ProjectModels;Database=OperationsFlowWeek3Auth;Trusted_Connection=True;TrustServerCertificate=True;MultipleActiveResultSets=true"
},
"OperationsFlow": {
"EnvironmentName": "Local SQL Server Demo",
"EnableDemoMode": true,
"EnableDemoDataSeeding": true,
"EnableMicrosoft365Integration": false,
"EnableLocalFileStorage": true,
"EnableRolePermissions": true,
"EnableNotificationPreview": false,
"EnableDryRunSync": true
},
"FileStorage": {
"Provider": "Local",
"LocalRootPath": "wwwroot/uploads",
"PublicRequestPath": "/uploads",
"MaxFileSizeMb": 25,
"AllowedExtensions": [
".pdf",
".docx",
".xlsx",
".png",
".jpg",
".jpeg",
".txt",
".csv"
]
},
"Microsoft365": {
"Enabled": false,
"TenantId": "",
"ClientId": "",
"ClientSecret": "",
"RedirectUri": "https://localhost:7156/signin-oidc",
"SharePointSiteUrl": "",
"SharePointHostName": "",
"SharePointSitePath": "",
"SharePointSiteId": "",
"DocumentLibraryId": "",
"DocumentLibraryName": "OperationsFlow Evidence",
"ListPrefix": "OperationsFlow",
"UseMicrosoftLogin": false,
"UseSharePointStorage": false,
"EnableRealSync": false,
"EnableDryRunOnly": true
},
"Notifications": {
"Provider": "LocalPreview",
"EnableLocalNotificationLog": true,
"EnableTeamsNotifications": false,
"EnableOutlookEmailNotifications": false,
"DefaultRecipient": "",
"TeamsWebhookUrl": "",
"WeeklySummaryDay": "Monday",
"WeeklySummaryTime": "08:30"
},
"Identity": {
"Provider": "LocalSql",
"EnableLocalSqlUsers": true,
"EnableExternalLoginLinks": true,
"EnableMicrosoftOAuth2": false,
"LocalSqlIsAuthorizationSource": true,
"Week4OAuth2LinkingMode": "MicrosoftOAuth2ToLocalUser"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}