Skip to content

Commit

Permalink
Modify README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hodanov committed Jul 11, 2021
1 parent 7add461 commit 3e969c3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,28 @@ Docker container will run and the `code/app` directory will be made.

The directory is mounted `/go/src/app` directory in a container.

4. How to debug Go with VSCode

Add the setting of VSCode to .vscode/launch.json.

ex.

```
{
"version": "0.2.0",
"configurations": [
{
"name": "debug",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}",
"showLog": true
}
]
}
```

Thank you.

## Author
Expand Down

0 comments on commit 3e969c3

Please sign in to comment.