Skip to content
Snippets Groups Projects
Unverified Commit 3c71db3e authored by Kian Paimani's avatar Kian Paimani Committed by GitHub
Browse files

Remove noise from the template list (#5437)


Co-authored-by: default avatarJavier Viola <363911+pepoviola@users.noreply.github.com>
Co-authored-by: default avatarAlexandru Vasile <60601340+lexnv@users.noreply.github.com>
Co-authored-by: command-bot <>
parent f6eeca91
Branches
No related merge requests found
Pipeline #494850 waiting for manual action with stages
in 1 hour, 14 minutes, and 55 seconds
...@@ -7,34 +7,22 @@ ...@@ -7,34 +7,22 @@
//! //!
//! ## Internal //! ## Internal
//! //!
//! The following [templates](https://github.com/paritytech/polkadot-sdk/blob/master/templates) are //! The following templates are maintained as a part of the `polkadot-sdk` repository:
//! maintained as a part of the `polkadot-sdk` repository: //!
//! //! - [`minimal-template`](https://github.com/paritytech/polkadot-sdk-minimal-template): A minimal
//! - `minimal_template_node`/[`minimal_template_runtime`]: A minimal template that contains the //! template that contains the least amount of features to be a functioning blockchain. Suitable
//! least amount of features to be a functioning blockchain. Suitable for learning, development //! for learning and testing.
//! and testing. This template is not meant to be used in production. //! - [`solochain-template`](https://github.com/paritytech/polkadot-sdk-solochain-template):
//! - `solochain_template_node`/[`solochain_template_runtime`]: Formerly known as //! Formerly known as "substrate-node-template", is a white-labeled substrate-based blockchain
//! "substrate-node-template", is a white-labeled substrate-based blockchain (aka. solochain) that //! (aka. solochain) that contains moderate features, such as a basic consensus engine and some
//! contains moderate features, such as a basic consensus engine and some FRAME pallets. This //! FRAME pallets. This template can act as a good starting point for those who want to launch a
//! template can act as a good starting point for those who want to launch a solochain. //! solochain.
//! - `parachain_template_node`/[`parachain_template_runtime`]: A parachain template ready to be //! - [`parachain-template`](https://github.com/paritytech/polkadot-sdk-parachain-template):
//! connected to a test relay-chain. //! A parachain template ready to be connected to a relay-chain, such as [Paseo](https://github.com/paseo-network/.github)
//! //! , Kusama or Polkadot.
//! These templates are always kept up to date, and are mirrored to external repositories for easy //!
//! forking: //! Note that these templates are mirrored automatically from [this](https://github.com/paritytech/polkadot-sdk/blob/master/templates)
//! //! directory of polkadot-sdk, therefore any changes to them should be made as a PR to this repo.
//! - <https://github.com/paritytech/polkadot-sdk-minimal-template>
//! - <https://github.com/paritytech/polkadot-sdk-solochain-template>
//! - <https://github.com/paritytech/polkadot-sdk-parachain-template>
//!
//! ## External Templates
//!
//! Noteworthy templates outside of this repository.
//!
//! - [`extended-parachain-template`](https://github.com/paritytech/extended-parachain-template): A
//! parachain template that contains more built-in functionality such as assets and NFTs.
//! - [`frontier-parachain-template`](https://github.com/paritytech/frontier-parachain-template): A
//! parachain template for launching EVM-compatible parachains.
//! //!
//! ## OpenZeppelin //! ## OpenZeppelin
//! //!
......
//! # Substrate CLI //! # Substrate CLI
//! //!
//! Let's see some examples of typical CLI arguments used when setting up and running a //! Let's see some examples of typical CLI arguments used when setting up and running a
//! Substrate-based blockchain. We use the [`substrate-node-template`](https://github.com/substrate-developer-hub/substrate-node-template) //! Substrate-based blockchain. We use the [`solochain-template`](https://github.com/paritytech/polkadot-sdk-solochain-template)
//! on these examples. //! on these examples.
//! //!
//! #### Checking the available CLI arguments //! #### Checking the available CLI arguments
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment