generated from Avanade/avanade-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
appsettings.json
40 lines (40 loc) · 1.12 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
37
38
39
40
{
"Logging": {
"LogLevel": {
"Default": "Information"
}
},
"ConnectionStrings": {
"SqlDb": "Data Source=.;Initial Catalog=SqlServerSidecarDemo;Integrated Security=True;TrustServerCertificate=true",
"SidecarDb": "Data Source=.;Initial Catalog=SqlServerSidecarDb;Integrated Security=True;TrustServerCertificate=true",
"ServiceBus": "add-your-super-secret-key-here"
},
"NTangle": {
"Default": {
"Enabled": true,
"Interval": "00:00:05",
"MaxQuerySize": 100,
"ContinueWithDataLoss": true
},
"CustomerHostedService": {
"Enabled": true,
"Interval": "00:00:30"
},
"ContactHostedService": {
"Enabled": true
},
"CustomerOrchestrator": {
"MaxQuerySize": 50,
"ContinueWithDataLoss": true
}
},
"EventOutboxHostedService": {
"Enabled": true,
"MaxDequeueSize": "50",
"Interval": "00:00:06"
},
"ServiceBusSender": {
"QueueOrTopicName": "ntangle-stream"
},
"FileLockSynchronizerPath": "." // Current executing directory for debugging purposes; this should be changed to a shared directory where executing proper.
}