Skip to content

debionetwork/debio-node

Repository files navigation

DeBio Node

Decentralized Sovereign Biomed

The Anonymous-First Platform for Medical and Bioinformatics Data.

Substrate Medium


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.

Getting Started

Follow these steps to get started with our Blockchain 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/debio \
--base-path .local \
--dev \
--alice \
--enable-offchain-indexing true

Purge the development chain's state:

./target/debug/debio \
purge-chain \
--base-path .local \
--dev

Start 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=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