The IG Generator app enables users to create FHIR Implementation Guides (IGs) based on DHIS2 tracker program metadata. The app allows users to set the configuration of an IG, select tracker programs, and transform the DHIS2 tracker metadata into FHIR artifacts. The app generates a local IG bundle, ready to be built with external tools like SUSHI. A DHIS2 instance with tracker metadata is required, and the app is designed as a tool to simplify IG authoring.
After using the IG Generator app, you will have a downloaded, zipped IG bundle. Follow the steps below to build the IG and view its contents:
- Extract the downloaded ZIP file into a directory of your choice.
Ensure the following tools are installed and available in your environment:
- SUSHI: For compiling FHIR Shorthand into FHIR definitions.
npm install -g fsh-sushi
- Java JDK (version 17 or higher): Required for running the IG Publisher.
- Ruby and Jekyll: Required for the IG Publisher.
The IG Publisher will generate the IG content, validate it, and create a browsable website.
- Open a terminal and navigate to the extracted IG directory.
cd path/to/ig
- Run the
_updatePublisher
script to download the latest version of the IG Publisher:- Linux/macOS:
./_updatePublisher.sh
- Windows:
_updatePublisher.bat
- Linux/macOS:
- Run the
_genonce
script to generate the IG content:- Linux/macOS:
./_genonce.sh
- Windows:
_genonce.bat
- Linux/macOS:
- Navigate to the
output
folder in the extracted IG directory. - Open the
index.html
file in a web browser. - Explore the IG, including the Artifacts tab, to view all generated FHIR artifacts.
This project was bootstrapped with DHIS2 Application Platform.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner and runs all available tests found in /src
.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
A deployable .zip
file can be found in build/bundle
!
See the section about building for more information.
Deploys the built app in the build
folder to a running DHIS2 instance.
This command will prompt you to enter a server URL as well as the username and password of a DHIS2 user with the App Management authority.
You must run yarn build
before running yarn deploy
.
See the section about deploying for more information.
You can learn more about the platform in the DHIS2 Application Platform Documentation.
You can learn more about the runtime in the DHIS2 Application Runtime Documentation.
To learn React, check out the React documentation.