Skip to content

Commit

Permalink
Merge pull request #300 from cosmos/local-testnet
Browse files Browse the repository at this point in the history
note and fix for local testnet
  • Loading branch information
jbibla authored Jan 2, 2018
2 parents b6b301c + 3027673 commit 2cb9b09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ brew install glide
# install gaia
go get github.com/cosmos/gaia
cd $GOPATH/src/github.com/cosmos/gaia
git checkout develop
git checkout v0.4.0
glide install
make install
```
Expand Down Expand Up @@ -54,6 +54,11 @@ To run the UI on a specific a testnet from the [testnets](https://github.com/ten
$ yarn run testnet <networkName>
```

To run the UI on a local node with `chain_id=local`:
```bash
$ yarn run testnet local
```

To run the UI with a mocked backend (without connecting to a testnet):
```bash
$ yarn run uionly
Expand Down
2 changes: 1 addition & 1 deletion app/networks/local/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ create_empty_blocks_interval = 1
#send_rate=51200000 # 50 MB/s
#recv_rate=51200000 # 50 MB/s
laddr = "tcp://127.0.0.1:46656"
seeds = ""
seeds = "0.0.0.0:46656"

0 comments on commit 2cb9b09

Please sign in to comment.