forked from Open-Acidification/TankController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.json
57 lines (55 loc) · 1.18 KB
/
tasks.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
{
"version": "2.0.0",
"tasks": [
{
"label": "Start Reverse Proxy",
"type": "shell",
"command": "dart",
"args": [
"run",
"bin/reverse_proxy.dart"
],
"options": {
"cwd": "extras/reverse_proxy"
},
"problemMatcher": [],
"detail": "Starts the reverse proxy server on port 8080"
},
{
"label": "Start Log File Server",
"type": "shell",
"command": "dart",
"args": [
"run",
"bin/log_file_server.dart"
],
"options": {
"cwd": "extras/log_file_server"
},
"problemMatcher": [],
"detail": "Starts the log file server on port 8082"
},
{
"label": "Start Flutter Client",
"type": "shell",
"command": "flutter",
"args": ["run", "--web-port=8081"],
"options": {
"cwd": "extras/log_file_client"
},
"presentation": {
"reveal": "always",
"focus": true,
"panel": "dedicated"
}
},
{
"label": "Start All Servers",
"dependsOn": [
"Start Reverse Proxy",
"Start Log File Server",
"Start Flutter Client"
]
}
]
}