unical1988 commented on code in PR #1244: URL: https://github.com/apache/answer/pull/1244#discussion_r1948480368
########## .vscode/launch.json: ########## @@ -0,0 +1,22 @@ +{ + // 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": "Launch Package", + "type": "go", + "debugAdapter": "dlv-dap", + "request": "attach", + "mode": "remote", + "port": 2345, + "host": "127.0.0.1", // can skip for localhost + "logOutput": "dap", + "showLog": true, + "program": "${fileDirname}/../cmd/answer/myApp.exe", + + } + ] +} Review Comment: Ok -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@answer.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org