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

feat: interactive command-line for running node #136

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
run:
./interactive-cli.sh

18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,23 @@ Ready to use docker-compose to run your own [nwaku](https://github.com/waku-org/
* Grafana dashboard for advanced users or node operators.
* Requires `docker-compose` and `git`.

## Setup and Run
# Running Your nwaku Node

There are two ways to run your nwaku node:
1. **Interactive CLI**: This method provides a user-friendly, guided setup process.
2. **Manual Setup**: This method involves manually configuring and running the node using provided scripts and configuration files.

## 1. Interactive CLI

The Interactive CLI guides you through the setup process step-by-step, making it easier to configure and run your nwaku node without needing to manually edit configuration files.

To start the Interactive CLI, run the following command:

```
make run
```

## 2. Manual Setup and Run

### 📝 0. Prerequisites

Expand Down
Loading