diff --git a/README.md b/README.md index 6db1959599..28c3336ec9 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ celestia init celestia start ``` -Please refer to [this guide](https://docs.celestia.org/nodes/celestia-node/) for more information on running a node. +Please refer to [this guide](https://docs.celestia.org/how-to-guides/celestia-node/) for more information on running a node. ### Quick Start with Light Node on arabica diff --git a/celestia-node.mk b/celestia-node.mk index 2729acc13b..801ab0afd5 100644 --- a/celestia-node.mk +++ b/celestia-node.mk @@ -17,12 +17,14 @@ node-help: @echo " light-arabica-up options:" @echo " COMMAND=again - Reset the node before starting" @echo " CORE_IP= - Use custom IP instead of default validator" + @echo " CORE_PORT= - Use custom port instead of default 9090" @echo "" @echo "Examples:" @echo " make light-arabica-up" @echo " make light-arabica-up COMMAND=again" @echo " make light-arabica-up CORE_IP=custom.ip.address" - @echo " make light-arabica-up COMMAND=again CORE_IP=custom.ip.address" + @echo " make light-arabica-up CORE_IP=custom.ip.address CORE_PORT=9091" + @echo " make light-arabica-up COMMAND=again CORE_IP=custom.ip.address CORE_PORT=9091" # Install celestia node and cel-key binaries node-install: @@ -89,12 +91,14 @@ light-arabica-up: if [ -n "$(CORE_IP)" ]; then \ celestia light start \ --core.ip $(CORE_IP) \ + --core.port $(if $(CORE_PORT),$(CORE_PORT),9090) \ --rpc.skip-auth \ --rpc.addr 0.0.0.0 \ --p2p.network arabica; \ else \ celestia light start \ --core.ip validator-1.celestia-arabica-11.com \ + --core.port $(if $(CORE_PORT),$(CORE_PORT),9090) \ --rpc.skip-auth \ --rpc.addr 0.0.0.0 \ --p2p.network arabica; \