-
Notifications
You must be signed in to change notification settings - Fork 5
/
launch.json
37 lines (37 loc) · 881 Bytes
/
launch.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
{
"run": [
{
"method": "shell.start"
},
{
"method": "shell.enter",
"params": {
"message": "{{self.config.activate_command}}",
"on": [{
"event": null,
"return": true
}]
}
},
{
"method": "shell.enter",
"params": {
"message": "python -m langflow",
"on": [{
"event": "/Access (http[0-9\/.:]+)/",
"return": "{{event.matches[0][1]}}"
}]
}
},
{
"method": "browser.open",
"params": {
"uri": "{{input}}",
"target": "_blank"
}
},
{
"method": "process.wait"
}
]
}