Skip to content

Latest commit

 

History

History
 
 

doc

Documentations

This directory contains various documentation pages. Here is a short summary of what each file and/or directory is for and how to use them:

The rest of the files/directories are used for generating our documentation site and are described below.

Documentation site

The docs/ directory contains the content for building our documentation site at google.github.io/fhir-data-pipes. To make changes to these documentations you can follow MkDocs steps, namely:

  • Create a Python virtual env.
    virtualenv -p python3 venv
    source ./venv/bin/activate
  • Install the requirements:
    pip install -r requirements.txt
  • To see local changes, run the dev server and check: http://127.0.0.1:8000/analytics
    mkdocs serve
  • To build the pages:
    mkdocs build
  • To deploy the pages:
    mkdocs gh-deploy
  • Do not commit the generated sites/ directory to the master branch. The docs website at google.github.io/fhir-data-pipes is generated from the gh-pages branch; so sites/ updates only go to this branch.