From e5187347024f24e58bbe593249dbbf4c8e9377f9 Mon Sep 17 00:00:00 2001 From: Sergei Tikhomirov Date: Thu, 14 Sep 2023 18:16:33 +0200 Subject: [PATCH 1/2] Clarify running instructions Add link to DNS bootstrapping nodes --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 99b253e965..1bd6e6222c 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,14 @@ The standard developer tools, including a C compiler, GNU Make, Bash, and Git. M # You'll run `make update` after each `git pull` in the future to keep those submodules updated. make wakunode2 +# Run with DNS bootstrapping +./build/wakunode2 --dns-discovery --dns-discovery-url=DNS_BOOTSTRAP_NODE_URL + # See available command line options ./build/wakunode2 --help ``` +You can use nodes specified [here](https://github.com/waku-org/nwaku/blob/master/apps/chat2/chat2.nim#L375-L378) as bootstrap nodes. +To join the network, you need to know the address of at least one node. For more on how to run `wakunode2`, refer to: - [Run using binaries](https://docs.waku.org/guides/run-nwaku-node#download-the-binary) From 558a4d26f013aac2df634148468a05f77b8c1272 Mon Sep 17 00:00:00 2001 From: Sergei Tikhomirov Date: Thu, 5 Oct 2023 14:57:44 +0200 Subject: [PATCH 2/2] refer to Waku README for bootstrap info --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1bd6e6222c..8e6984545e 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ make wakunode2 # See available command line options ./build/wakunode2 --help ``` -You can use nodes specified [here](https://github.com/waku-org/nwaku/blob/master/apps/chat2/chat2.nim#L375-L378) as bootstrap nodes. -To join the network, you need to know the address of at least one node. +To join the network, you need to know the address of at least one bootstrap node. +Please refer to the [Waku README](https://github.com/waku-org/nwaku/blob/master/waku/README.md) for more information. For more on how to run `wakunode2`, refer to: - [Run using binaries](https://docs.waku.org/guides/run-nwaku-node#download-the-binary)