-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunchSettings.json
More file actions
28 lines (28 loc) · 828 Bytes
/
Copy pathlaunchSettings.json
File metadata and controls
28 lines (28 loc) · 828 Bytes
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
{
"profiles": {
"Orchestrator Only": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"composeLaunchAction": "LaunchBrowser",
"composeLaunchServiceName": "quartznode",
"composeLaunchUrl": "{Scheme}://localhost:{ServicePort}/",
"serviceActions": {
"quartznode": "StartDebugging",
"worker1": "DoNotStart",
"worker2": "DoNotStart"
}
},
"All Instances": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"composeLaunchAction": "LaunchBrowser",
"composeLaunchServiceName": "quartznode",
"composeLaunchUrl": "{Scheme}://localhost:{ServicePort}/",
"serviceActions": {
"quartznode": "StartDebugging",
"worker1": "StartDebugging",
"worker2": "StartDebugging"
}
}
}
}