substrate-manager is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing substrate substrate-manager/commands/add_pallet substrate-manager/commands/build substrate-manager/commands/deploy substrate-manager/commands/frontend substrate-manager/commands/mod substrate-manager/commands/new_chain substrate-manager/commands/new_contract substrate-manager/commands/run substrate-manager/commands/test executables

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install substrate-manager

It will make substrate substrate-manager/commands/add_pallet substrate-manager/commands/build substrate-manager/commands/deploy substrate-manager/commands/frontend substrate-manager/commands/mod substrate-manager/commands/new_chain substrate-manager/commands/new_contract substrate-manager/commands/run substrate-manager/commands/test commands available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall substrate-manager uninstalls.

Adding substrate_manager library as a dependency

Run this command in a terminal, in your project's directory:

cargo add substrate-manager

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

substrate-manager = "0.1.2"

The substrate_manager library will be automatically available globally. Read the substrate_manager library documentation.

Back to the crate overview.