Last active
November 17, 2020 08:15
-
-
Save hskang9/146cc1feb7ab5a1d22869c52f6ebbc3e to your computer and use it in GitHub Desktop.
PoS node setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
# May prompt for location information | |
sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl nginx | |
# Install Rust | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
source ~/.cargo/env | |
rustup install nightly-2020-09-20 | |
rustup toolchain install nightly-2020-09-20 | |
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-09-20 | |
rustup default nightly-2020-09-20 | |
# Install Subkey | |
curl https://getsubstrate.io -sSf | bash -s -- --fast | |
cargo install --force subkey --git https://github.com/paritytech/substrate --version 2.0.0 | |
# Clone repo | |
git clone -b pos_integration https://github.com/staketechnologies/Plasm --recursive | |
# Setup https | |
git clone https://github.com/certbot/certbot.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment