Skip to content

Latest commit

 

History

History
 
 

guide

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Hermes Guide

Hermes is the name of the binary that comes packaged with IBC Relayer CLI crate.

This directory comprises a comprehensive guide to Hermes. In order to build and view this guide you need to install [mdBook] (https://github.com/rust-lang/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: 0.13.0.

The version of this guide is aligned with the versioning of the ibc crates.

Local deployment

This section describes how to deploy this guide locally on your system.

Pre-requisites

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-mermaid
cargo install mdbook-toc

Building and viewing the guide locally

In order to build and view the guide on your local machine, please follow this instructions.

Change to the guide dir

This assumes your current dir is the ibc-rs repository

cd guide

Build the guide

To build and view the guide in your browser, run the mdbook command below:

mdbook serve

View the guide

This will host the guide in your local machine. Open your browser and navigate to:

http://localhost:3000

Adding or editing new content to the guide

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.

Local development

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.

Submit your changes

Once you finish adding the new content just commit your changes (git commit) and push them to the respository (git push).