This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
58 lines (58 loc) · 1.84 KB
/
manifest.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
49
50
51
52
53
54
55
56
57
58
{
"components": [
{
"id": "runtime-local",
"alias": "local",
"type": "runtime",
"programs": [
{
"id": "ensure-dapr",
"executable": "./src/ensure-dapr.sh"
},
{
"id": "run-mosquitto",
"executable": "./src/run-mosquitto.sh"
},
{
"id": "run-vehicledatabroker",
"executable": "./src/run-vehicledatabroker.sh"
},
{
"id": "run-vehicledatabroker-cli",
"executable": "./src/run-vehicledatabroker-cli.sh"
},
{
"id": "run-feedercan",
"executable": "./src/run-feedercan.sh"
},
{
"id": "run-vehicleservices",
"executable": "./src/run-vehicleservices.sh"
}
],
"start": [
{
"id": "ensure-dapr"
},
{
"id": "run-mosquitto",
"dependsOn": "ensure-dapr",
"startupLine": "mosquitto version 2.0.14 running"
},
{
"id": "run-vehicledatabroker",
"dependsOn": "run-mosquitto",
"startupLine": "You're up and running! Dapr logs will appear here."
},
{
"id": "run-feedercan",
"dependsOn": "run-vehicledatabroker"
},
{
"id": "run-vehicleservices",
"dependsOn": "run-vehicledatabroker"
}
]
}
]
}