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-debugger
in infra repo.vscode/launch.json
file. You can use the below example (replace <ABSOLUTE_PATH> with your real absolute path to the project folderdocker compose up --build
docker ps
to 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