Conversation
ocasta181
previously approved these changes
Mar 9, 2023
ocasta181
approved these changes
Mar 9, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To test:
task/wil/setup-debuggerin infra repo.vscode/launch.jsonfile. You can use the below example (replace <ABSOLUTE_PATH> with your real absolute path to the project folder{ // 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": "Delve into Docker", "type": "go", "request": "attach", "mode": "remote", "substitutePath": [ { "from": "<ABSOLUTE_PATH>/string-api", "to": "/string_api", }, ], "port": 2346, "host": "127.0.0.1", "showLog": true, "apiVersion": 2, "trace": "verbose" } ] }docker compose up --builddocker psto make sure containers are healthy. In the ports section you should see that new ports (2345 and 2346) are exposed. These ports are used by vscode to send/receive events to/from the Delve debugger.In vscode go the debugger tab

click on Delve into Docker, now you should see the debug buttons (pause, restart, step over, step in, stop), the debug console in debug bar, and you can set breakpoints.
if you can go deeper on how to use the vscode debugger you can visit this link