forked from hiddify/hiddify-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
56 lines (55 loc) · 1.63 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"version": "0.2.0",
"configurations": [
{
"name": "go Package",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "./libcore",
"program": "./libcore/cli/main.go",
"args": ["build","-c","a.txt","-d","b.txt","--full-config"] ,
"buildFlags": "-tags with_clash_api,with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server"
},
{
"name": "Hiddify Dev",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
// "args": ["-d","192.168.1.35:36463"]
},
{
"name": "Hiddify Dev Release",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main.dart",
},
{
"name": "Hiddify Dev Profile",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart",
},
{
"name": "Hiddify Prod",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main_prod.dart",
},
{
"name": "Attach: Design for iPad",
"request": "attach",
"type": "dart",
"program": "lib/main.dart",
"args": [
"--app-id",
"app.hiddify.com"
],
"deviceId": "designed-for-ipad",
}
]
}