Skip to content

Commit e010619

Browse files
authored
Merge pull request #1601 from lanphan/vscode
add vscode launch setting for easier run / debug
2 parents d61498c + ef518cd commit e010619

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.vscode/launch.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": "Launch bbgo",
10+
"type": "go",
11+
"request": "launch",
12+
"mode": "auto",
13+
"program": "${workspaceFolder}/cmd/bbgo",
14+
"cwd": "${workspaceFolder}",
15+
"env": {},
16+
"args": ["backtest", "--debug"],
17+
"showLog": true
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)