Skip to content

Files

Latest commit

6a8ac36 · Mar 7, 2025

History

History

doc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 28, 2025
Jun 19, 2024
Jun 10, 2024
Jun 10, 2024
Jun 19, 2024
Mar 7, 2025
Mar 7, 2025
Jul 25, 2024
Jul 18, 2024
May 27, 2022
Jun 19, 2024
Jan 26, 2023
Jun 10, 2024

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.