Skip to content
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

build: add remote debugging with delve #10587

Merged
merged 8 commits into from
Dec 1, 2021
Prev Previous commit
Next Next commit
update: improve comments in makefile for localnet-{start,debug}
  • Loading branch information
9M6 committed Dec 1, 2021
commit 64ca71751bececbe10c33fbb82729a737e7955f3
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -490,10 +490,11 @@ localnet-build-nodes:
localnet-stop:
docker-compose down

# Run a 4-node testnet locally
# localnet-start will run a 4-node testnet locally. The nodes are
# based off the docker images in: ./contrib/images/simd-env
localnet-start: localnet-stop localnet-build-env localnet-build-nodes

# localnet-debug will run a local network with a node (or mutliple) in debug mode
# localnet-debug will run a 4-node testnet locally in debug mode
# you can read more about the debug mode here: ./contrib/images/simd-dlv/README.md
localnet-debug: localnet-stop localnet-build-dlv localnet-build-nodes

Expand Down