forked from equinor/flotilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.Development.json
48 lines (48 loc) · 1.07 KB
/
appsettings.Development.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
41
42
43
44
45
46
47
48
{
"AzureAd": {
"ClientId": "ea4c7b92-47b3-45fb-bd25-a8070f0c495c",
"ClientSecret": "Fill in ASP.NET Secret Manager"
},
"KeyVault": {
"VaultUri": "https://flotilladevkv.vault.azure.net/"
},
"Isar": {
"Scopes": [
"fd384acd-5c1b-4c44-a1ac-d41d720ed0fe/.default"
]
},
"Maps": {
"StorageAccount": "flotillamaps"
},
"AllowedHosts": "*",
"AllowedOrigins": [
"https://*.equinor.com/",
"http://localhost:3001",
"https://localhost:3001"
],
"Mqtt": {
"Host": "localhost",
"Port": 1883,
"Username": "flotilla",
"Topics": [
"isar/+/robot_status",
"isar/+/robot_info",
"isar/+/robot_heartbeat",
"isar/+/mission",
"isar/+/task",
"isar/+/step",
"isar/+/battery",
"isar/+/pressure",
"isar/+/pose"
],
"MaxRetryAttempts": 5,
"ShouldFailOnMaxRetries": false
},
"Blob": {
"CustomMissionContainerName": "custommission",
"AccountName": "flotilladevsa"
},
"Database": {
"UseInMemoryDatabase": false
}
}