mirror of
https://github.com/foomo/gograpple.git
synced 2025-10-16 12:35:37 +00:00
add test app launch config
This commit is contained in:
parent
28e7100ce4
commit
1f01f09685
1
.gitignore
vendored
1
.gitignore
vendored
@ -17,5 +17,6 @@
|
||||
.todo
|
||||
.idea/
|
||||
.vscode/
|
||||
!test/app/.vscode/
|
||||
|
||||
bin/
|
||||
20
test/app/.vscode/launch.json
vendored
Normal file
20
test/app/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Connect to server",
|
||||
"type": "go",
|
||||
"debugAdapter": "dlv-dap", // `legacy` by default
|
||||
"request": "attach",
|
||||
"mode": "remote",
|
||||
"port": 2345,
|
||||
"host": "127.0.0.1",
|
||||
"substitutePath": [
|
||||
{ "from": "${workspaceFolder}/test/app", "to": "/" },
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user