@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
36 lines (22 loc) • 1.1 kB
Markdown
## Use the Task tool to launch Solo
For developers who want to quickly deploy a standalone solo network without need to know what is under the hood,
they can use the Task tool to launch the network with a single command.
First, install the cluster tool `kind` with this [link](https://kind.sigs.k8s.io/docs/user/quick-start#installation)
Then, install the task tool `task` with this [link](https://taskfile.dev/installation/)
`task` will install dependencies and build the solo project.
### Start solo network
The developer can use one of the following three commands to quickly deploy a standalone solo network.
```bash
# Option 1) deploy solo network with two nodes `task` is the same as `task default`
task
# Option 2) deploy solo network with two nodes, and mirror node
task default-with-mirror
# Option 3) deploy solo network with two nodes, mirror node, and JSON RPC relay
task default-with-relay
```
If mirror node or relay node is deployed, user can access the hedera explorer at http://localhost:8080
### Stop solo network
To tear down the solo network
```bash
task clean
```