Skip to content

DeBio Network blockchain node implementation. Made using Parity's Substrate blockchain framework.

License

Notifications You must be signed in to change notification settings

debionetwork/debio-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3fc9624 · Dec 9, 2021
Dec 7, 2021
Dec 6, 2021
Nov 23, 2021
Dec 7, 2021
Dec 6, 2021
Nov 18, 2021
Dec 9, 2021
Dec 9, 2021
Nov 16, 2021
Oct 29, 2021
Oct 29, 2021
Oct 29, 2021
Oct 29, 2021
Dec 9, 2021
Nov 16, 2021
Oct 29, 2021
Nov 2, 2021
Nov 11, 2021

Repository files navigation

DeBio Node

Decentralized Sovereign Biomed

The Anonymous-First Platform for Medical and Bioinformatics Data.
Built on Substrate.

Substrate version Medium


DeBio is a decentralized anonymous-first platform for medical and bioinformatics data. It uses blockchain technology as the immutable transaction ledger to support its processes.

DeBio blockchain nodes are built using Substrate, Parity's blockchain framework that allows for quick development of blockchains customizable by its pallets system.

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/debio \
--base-path .local \
--dev \
--alice

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 \
-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/start-docker-compose.sh