Forcerelay is the name of the binary that comes packaged with IBC Relayer CLI crate.
This directory comprises a comprehensive guide to Forcerelay.
In order to build and view this guide you need to install mdBook
.
mdBook is a utility to create modern online books from Markdown files.
This guide should be permanently deployed at its latest stable version at hermes.informal.systems.
Current version: v1.0.0
.
The version of this guide is aligned with the versioning of the ibc crates.
This section describes how to deploy this guide locally on your system.
Install mdBook
using cargo
:
cargo install mdbook
You also need to install the mdbook plug-in for mermaid
to generate graphs and diagrams, and the mdbook-toc
plug-in for generating table of contents:
cargo install mdbook-template
cargo install mdbook-mermaid
cargo install mdbook-toc
In order to build and view the guide on your local machine, please follow these instructions.
This assumes your current dir is the ibc-rs
repository
cd guide
To build and view the guide in your browser, run the mdbook
command below:
mdbook serve
This will host the guide in your local machine. Open your browser and navigate to:
http://localhost:3000
Please check the mdBook documentation for additional information on how to add new content to the guide.
Basically if you want to add new content to the guide, just add an entry to the SUMMARY.md
Markdown file which is the TOC page. Then create a page for the entry you've added to the SUMMARY.md
page. If you don't create the page, but save the SUMMARY.md
file and build again, mdBook
will create the page automatically for you.
If you are adding content using your favorite IDE and have a terminal opened running mdbook serve
, it provides a convenient watch functionality, so any changes detected on local files will trigger another build and if you refresh the guide on your browser they will be shown there.
Once you finish adding the new content just commit your changes (git commit
) and push them to the respository (git push
).