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

2635ea8 · Aug 26, 2022
Aug 19, 2022
Jul 18, 2022
Apr 5, 2022
Aug 26, 2022
Aug 26, 2022
Aug 2, 2022
Aug 26, 2022
Oct 29, 2021
Apr 13, 2022
Oct 29, 2021
Apr 13, 2022
Aug 26, 2022
Apr 21, 2022
Oct 29, 2021
Aug 19, 2022
Feb 9, 2022

Repository files navigation

DeBio Node

Decentralized Sovereign Biomed

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

Substrate version Medium Builder Quality Gate Status Tester


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 \
--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