README.md
February 17, 2023 ยท View on GitHub
Myriad Node
It's Your Turn to Own Your Web
Starting with Myriad.Social, we are creating a platform where social app, metaverse and messenger seamlessly integrate, together and with further applications. As a user, a content creator or a builder, Myriad is designed to be yours.Getting Started
Follow these steps to get started with the Node
Rust Setup
First, complete the basic Rust setup instructions.
Single-Node Development Chain
This command will start the single-node development chain with persistent state:
./target/debug/myriad \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true
Purge the development chain's state:
./target/debug/myriad \
purge-chain \
--base-path .local \
--dev
Start the development chain with detailed logging:
RUST_LOG=debug RUST_BACKTRACE=1 ./target/debug/myriad \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true \
-lruntime=debug
Run in Docker
First, install Docker and Docker Compose.
Then run the following command to start a single node development chain.
./.maintain/docker/create-network.sh
./.maintain/docker/start-docker-compose.sh