Skip to content

Commit 2dad8bb

Browse files
committed
Added VS Code launch.json
1 parent 43f7c8b commit 2dad8bb

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
"name": "Launch server",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "${workspaceFolder}",
13+
"env": {
14+
"PRVT_STORE": "local:test"
15+
},
16+
"args": [
17+
"serve",
18+
"-v"
19+
]
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)