Quick start
2021-11-16 Quick start Less than 1 minute
# Quick start
# Initial Setup
# Setup rust
curl https://sh.rustup.rs -sSf | sh
rustup update stable
1
2
2
# You will also need to install the following packages:
# Mac
brew install cmake pkg-config openssl git llvm
1
# Linux
sudo apt install cmake pkg-config libssl-dev git clang libclang-dev
1
More
ZeroDAO is based on Substrate, for more information please go to Substrate (opens new window) 。
# Installation
git clone https://github.com/ZeroDAO/ZeroDAO-node
cd ZeroDAO-node
make init
1
2
3
2
3
# Compilation
make build-release
1
# Run node
make run-dev
1
# Purge the development chain
make purge-dev
1