Documentation README

Introduction

This document contains information on how the Fabric documentation is built and published as well as a few conventions one should be aware of before making changes to the doc.

The crux of the documentation is written in reStructuredText which is converted to HTML using Sphinx. The HTML is then published on http://hyperledger-fabric.readthedocs.io which has a hook so that any new content that goes into docs/source on the main repository will trigger a new build and publication of the doc.

Conventions

Notes: The above means we have a dependency on the github mirror repository. Relative links are unfortunately not working on github when browsing through a RST file.

Setup

Making any changes to the documentation will require you to test your changes by building the doc in a way similar to how it is done for production. There are two possible setups you can use to do so: setting up your own staging repo and publication website, or building the docs on your machine. The following sections cover both options:

Setting up your own staging repo and publication website

You can easily build your own staging repo following these steps:

  1. Go to http://readthedocs.org and sign up for an account.
  2. Create a project. Your username will preface the URL and you may want to append -fabric to ensure that you can distinguish between this and other docs that you need to create for other projects. So for example: yourgithubid-fabric.readthedocs.io/en/latest.
  3. Click Admin, click Integrations, click Add integration, choose GitHub incoming webhook, then click Add integration.
  4. Fork Fabric on GitHub.
  5. From your fork, go to Settings in the upper right portion of the screen.
  6. Click Webhooks.
  7. Click Add webhook.
  8. Add the ReadTheDocs's URL into Payload URL.
  9. Choose Let me select individual events:PushesBranch or tag creationBranch or tag deletion.
  10. Click Add webhook.

Now anytime you modify or add documentation content to your fork, this URL will automatically get updated with your changes!

Building the docs on your machine

Here are the quick steps to achieve this on a local machine without depending on ReadTheDocs, starting from the main fabric directory. Note: you may need to adjust depending on your OS.

Prereqs: - Python 3.7 - Pipenv

cd fabric/docs
pipenv install
pipenv shell
make html

To build the Malayalam version using the Malayalam message catalog, use the following command:

make -e SPHINXOPTS="-D language='ml'" html

This will generate all the html files in docs/build/html which you can then start browsing locally using your browser. Every time you make a change to the documentation you will of course need to rerun make html.

In addition, if you'd like, you may also run a local web server with the following commands (or equivalent depending on your OS):

sudo apt-get install apache2
cd build/html
sudo cp -r * /var/www/html/

You can then access the html files at http://localhost/index.html.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License. s