paritytech / polkadot-sdk-minimal-template

The Minimal (Testing/Learning-Only) Template From Polkadot SDK
https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/polkadot_sdk/templates/index.html
The Unlicense
16 stars 41 forks source link
polkadot polkadot-sdk
# Polkadot SDK's Minimal Template Polkadot SDK Logo Polkadot SDK Logo > This is a minimal template for creating a blockchain based on Polkadot SDK. > > This template is automatically updated after releases in the main [Polkadot SDK monorepo](https://github.com/paritytech/polkadot-sdk).

Template Structure

A Polkadot SDK based project such as this one consists of:

Getting Started

Build

๐Ÿ”จ Use the following command to build the node without launching it:

cargo build --release

๐Ÿณ Alternatively, build the docker image:

docker build . -t polkadot-sdk-minimal-template

Single-Node Development Chain

๐Ÿ‘ค The following command starts a single-node development chain:

./target/release/minimal-template-node --dev

# docker version:
docker run --rm polkadot-sdk-minimal-template --dev

Development chains:

Connect with the Polkadot-JS Apps Front-End

Contributing

Getting Help