Skip to content

jlevier/s3-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

s3-viewer

Debugging


First, build the executable with proper flags:

go build -gcflags=all="-N -l"

Run the executable:

./s3-viewer

Create at the root of the project a .vscode folder with the following launch.json:

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Attach to Process",
      "type": "go",
      "request": "attach",
      "mode": "local",
      "processId": 0
    }
  ]
}

Now hit f5 or click the Start Debugging button. This will drop down the list of processes. Find the s3-viewer process you started before and now vscode will attach the debugger.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages