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

docs: update readme #4127

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ celestia <node_type> init
celestia <node_type> 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

Expand Down
6 changes: 5 additions & 1 deletion celestia-node.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ node-help:
@echo " light-arabica-up options:"
@echo " COMMAND=again - Reset the node before starting"
@echo " CORE_IP=<ip> - Use custom IP instead of default validator"
@echo " CORE_PORT=<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:
Expand Down Expand Up @@ -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; \
Expand Down
Loading