-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add script and instruction for protoc plugins debug #139
Conversation
Updates for readme
Fix readme layout
tools/debugging/README.md
Outdated
# Debugging protoc plugins | ||
|
||
Sometimes we need debug our protoc plugins with standart IDE debug tool. | ||
We have two ways how we can do it. First we can mock input content and start debug session, second use delve remote debug server. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest to make delve a link or put it in quotes
@dkukharau We want review from you |
@@ -0,0 +1,13 @@ | |||
FROM golang:1.10.0 AS builder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why have this file here if we've already put it in README?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we use this file in docker build
command, you must change it and use as a default behavior
I provide some kind of tutorial and utill scripts for protoc plugins debugging