Browse Source

improvement: running testnet instructions

feat/stacks-js-updates
Mamoor Jaan Khan 4 years ago
committed by Alexander Graebe
parent
commit
4425a73f0e
  1. 7
      src/pages/stacks-blockchain/running-testnet-node.md

7
src/pages/stacks-blockchain/running-testnet-node.md

@ -52,7 +52,12 @@ git clone https://github.com/blockstack/stacks-blockchain.git; cd stacks-blockch
Install the Stacks node by running:
```bash
cargo install --path ./testnet/stacks-node
cargo build --workspace --bin stacks-node
# binary will be in target/debug/stacks-node
./target/debug/stacks-node krypton
# release build
cargo build --workspace --release --bin stacks-node
# binary will be in target/release/stacks-node
```
-> This process will take a few minutes to complete

Loading…
Cancel
Save