Skip to content

ToolMap user documentation using ReadTheDoc

Notifications You must be signed in to change notification settings

terranum-ch/ToolMap-user-doc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ToolMap user documentation

Documentation Status

This repository contains the ToolMap user documentation and tutorials base files. The generated files are visible on ReadTheDocs here: http://toolmap.rtfd.io/

Structure

Documentation files are written in reStructuredText and are stored in the doc folder.

Local installation

This step is only needed in order to compile locally the documentation. the ReadTheDocs site is automatically updated when documentation is commited into the repository.

  1. Install Python 3.X

  2. Create a virtual environment using:

     python -m venv env (recommanded)
     source env/bin/activate (Unix)
     env\Scripts\activate.bat (Windows)
    
  3. Install the required packages using:

     pip install Sphinx
    

    see the requirements.txt file for more information.

  4. Generate the documentation locally using

     sphinx-build -b html doc html
    
  5. Commit and push any change to update the documentation on ReadTheDoc