-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Production.example.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathappsettings.Production.example.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"ConnectionStrings": {
"OperationsFlowDatabase": "Data Source=operationsflow.production.db"
},
"OperationsFlow": {
"EnvironmentName": "Production",
"EnableDemoMode": false,
"EnableDemoDataSeeding": false,
"EnableMicrosoft365Integration": true,
"EnableLocalFileStorage": false,
"EnableRolePermissions": true,
"EnableNotificationPreview": false,
"EnableDryRunSync": false
},
"FileStorage": {
"Provider": "SharePoint",
"LocalRootPath": "wwwroot/uploads",
"PublicRequestPath": "/uploads",
"MaxFileSizeMb": 25,
"AllowedExtensions": [
".pdf",
".docx",
".xlsx",
".png",
".jpg",
".jpeg",
".txt",
".csv"
]
},
"Microsoft365": {
"TenantId": "YOUR_TENANT_ID",
"ClientId": "YOUR_APP_CLIENT_ID",
"ClientSecret": "DO_NOT_COMMIT_REAL_SECRET",
"SharePointHostName": "yourtenant.sharepoint.com",
"SharePointSitePath": "/sites/operationsflow",
"SharePointSiteId": "YOUR_SHAREPOINT_SITE_ID",
"DocumentLibraryId": "YOUR_DOCUMENT_LIBRARY_ID",
"DocumentLibraryName": "OperationsFlow Documents",
"ListPrefix": "OperationsFlow",
"EnableRealSync": true,
"EnableDryRunOnly": false
},
"Notifications": {
"Provider": "Teams",
"EnableLocalNotificationLog": false,
"EnableTeamsNotifications": true,
"EnableOutlookEmailNotifications": false,
"DefaultRecipient": "manager@example.com",
"TeamsWebhookUrl": "DO_NOT_COMMIT_REAL_WEBHOOK_URL",
"WeeklySummaryDay": "Monday",
"WeeklySummaryTime": "08:30"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}