Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

DeBio blockchain node implementation. Made using parity's substrate blockchain framework.

License

Notifications You must be signed in to change notification settings

agustinustheo/debio-node

 
 

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

About

DeBio blockchain node implementation. Made using parity's substrate blockchain framework.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Rust 99.1%
  • Other 0.9%