-
Notifications
You must be signed in to change notification settings - Fork 0
/
aves.code-workspace
78 lines (78 loc) · 1.91 KB
/
aves.code-workspace
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"folders": [
{
"path": "."
}
],
"settings": {
"go.lintTool": "golangci-lint",
"go.lintFlags": ["--fast"],
"protoc": {
"path": "protoc",
"options": [
"-I=.",
"-I=$GOPATH/src/github.com/gogo/protobuf/protobuf",
"--proto_path=${workspaceRoot}/api/proto",
"--gofast_out=plugins=grpc:."
]
},
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch (Badger)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/cmd/server",
"env": {},
"args": ["--out", "${workspaceRoot}/tmp/badger.su"],
"cwd": "${fileDirname}"
},
{
"name": "Launch (Bolt)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/cmd/server",
"env": {},
"args": ["--out", "${workspaceRoot}/tmp/bolt.su", "--type", "bolt"],
"cwd": "${fileDirname}"
},
{
"name": "Launch (Pebble)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/cmd/server",
"env": {},
"args": ["--out", "${workspaceRoot}/tmp/pebble.aves", "--type", "pebble"],
"cwd": "${fileDirname}"
},
{
"name": "Launch (CLI)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/cmd/cli",
"env": {},
"args": ["range", "01BX5ZZKBKACTAV9WEVGEMMVRY", "2"],
"cwd": "${fileDirname}"
},
{
"name": "Launch test package",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}"
}
]
}
}