Skip to content

Commit

Permalink
docs: update readme (#4127)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein authored Feb 25, 2025
1 parent c9e89ba commit 56643fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
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

0 comments on commit 56643fb

Please sign in to comment.