Skip to content

Commit c5a6dce

Browse files
committed
chore(vscode): add launch.json for Go debugging
1 parent cacb7ae commit c5a6dce

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# IDE
22
.idea
3-
.vscode
43

54
# Config
65
.env

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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": "Serve",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "${workspaceFolder}/cmd/permify/permify.go",
13+
"args": ["serve"],
14+
"env": {
15+
}
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)