DeBio Network is a decentralized anonymous-first platform for medical and bioinformatics data. It uses blockchain technology as the immutable transaction ledger to support its processes.
Follow these steps to get started with our Blockchain Node
First, complete the basic Rust setup instructions.
This command will start the single-node development chain with persistent state:
./target/debug/debio \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing truePurge the development chain's state:
./target/debug/debio \
purge-chain \
--base-path .local \
--devStart the development chain with detailed logging:
RUST_LOG=debug RUST_BACKTRACE=1 ./target/debug/debio \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true \
-lruntime=debugFirst, 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