Skip to content

Commit

Permalink
Add instructions for adding Charlie Docker address to /etc/hosts
Browse files Browse the repository at this point in the history
I forgot to do this in #940.
  • Loading branch information
HCastano committed Jul 19, 2024
1 parent 9b38db1 commit 596cbd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This repository provides a [Docker Compose](https://docs.docker.com/compose/) co
```
1. If you need to communicate directly with the threshold signature scheme server from your Docker host machine, you may also need to include its address in your local `/etc/hosts` file:
```sh
echo "127.0.0.1 alice-tss-server bob-tss-server" | sudo tee -a /etc/hosts
echo "127.0.0.1 alice-tss-server bob-tss-server charlie-tss-server" | sudo tee -a /etc/hosts
```
1. Confirm your local development network is up and running. You can:
* look at server logs:
Expand All @@ -40,7 +40,7 @@ This repository provides a [Docker Compose](https://docs.docker.com/compose/) co
```
* [use the Entropy Test CLI](https://docs.entropy.xyz/reference/rust-testing-interface) to interact with the locally running network:
```sh
cargo run -p entropy-test-cli -- --chain-endpoint="ws://127.0.0.1:9944" status
cargo run -p entropy-test-cli -- --chain-endpoint="ws://127.0.0.1:9944" status
```

### Building from source
Expand Down
5 changes: 3 additions & 2 deletions crates/test-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ When using the local docker compose setup, be aware you need to set the TSS host
```
127.0.0.1 alice-tss-server
127.0.0.1 bob-tss-server
127.0.0.1 charlie-tss-server
```

You'll also need the following packages:
Expand All @@ -39,9 +40,9 @@ You'll also need the following packages:

```shell
# MacOS
brew install openssl
brew install openssl
```

2. `pkg-config`:

```shell
Expand Down

0 comments on commit 596cbd6

Please sign in to comment.