mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-24 03:31:21 +00:00
14 lines
462 B
Markdown
14 lines
462 B
Markdown
### Example
|
|
|
|
```bash
|
|
# Upgrade barak.
|
|
# We need to give it a new seed to prevent port conflicts.
|
|
./build/debora run --input "`cat cmd/barak/seed2`" -- barak2 ./build/barak
|
|
|
|
# Build tendermint from source
|
|
./build/debora run -- build_tendermint bash -c "cd $GOPATH/src/github.com/tendermint/tendermint; make"
|
|
|
|
# Build and run tendermint
|
|
./build/debora run -- tendermint bash -c "cd \$GOPATH/src/github.com/tendermint/tendermint; make; ./build/tendermint node"
|
|
```
|