Skip to content

Commit

Permalink
chore: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 8, 2023
1 parent 9509787 commit 82b0a3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ Please, make sure to install the following software/packages on the VMs.
```bash
wget https://raw.githubusercontent.com/maticnetwork/node-ansible/master/go-install.sh \
&& chmod +x go-install.sh \
&& ./go-install.sh --remove \
&& ./go-install.sh
&& bash go-install.sh --remove \
&& bash go-install.sh
```
- Rabbitmq (_host_ and _remotes_)
Expand Down Expand Up @@ -368,7 +368,8 @@ Please, make sure to install the following software/packages on the VMs.
On the _host_ machine, please run
```bash
git clone https://github.com/maticnetwork/matic-cli.git \
cd \
&& git clone https://github.com/maticnetwork/matic-cli.git \
&& cd matic-cli \
&& npm install \
&& alias matic-cli="$(pwd)/bin/matic-cli" \
Expand All @@ -381,7 +382,9 @@ git clone https://github.com/maticnetwork/matic-cli.git \
Adjust the [docker configs](configs/devnet/docker-setup-config.yaml) and run
```bash
matic-cli setup devnet --config ../configs/devnet/docker-setup-config.yaml
$ matic-cli setup devnet --config ../configs/devnet/docker-setup-config.yaml
...
DONE Devnet is ready
```
Once the setup is done, follow these steps for local docker deployment
Expand All @@ -393,7 +396,7 @@ Once the setup is done, follow these steps for local docker deployment
- Start ganache
```bash
bash docker-ganache-start.sh
chmod +x docker-ganache-start.sh && bash docker-ganache-start.sh
```
- Start `heimdall` instances (it will run all services - rabbitmq, heimdall, bridge, server)
Expand Down Expand Up @@ -453,12 +456,12 @@ In this case, the stack is already running, you would just need to deploy/sync s
- Deploy contracts on Child chain
```bash
bash ganache-deployment-bor.sh
./ganache-deployment-bor.sh
```
- Sync contract addresses to Main chain
```bash
bash ganache-deployment-sync.sh
./ganache-deployment-sync.sh
```
#### Clean setup
Expand Down
2 changes: 1 addition & 1 deletion configs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ For `mati-cli`, the configs are directly used to spin the network up.
## Usage

```bash
matic-cli setup devnet -c path/to/config.yaml
matic-cli setup devnet --config path/to/config.yaml
```

## Option details with examples
Expand Down

0 comments on commit 82b0a3b

Please sign in to comment.