A custom microfrontend for OpenMRS HIV Reference Implementation (OHRI)
OpenMRS HIV Reference Implementation (OHRI) packages built on top of OpenMRS Frontend.
- esm-ohri-core-app (OHRI Core App)
- esm-commons-lib (Common Libraries)
- esm-form-render-app (Form Render App)
- esm-hiv-app (HIV App)
- esm-covid-app (COVID-19 App)
- esm-cervical-cancer-app (Cervical Cancer App)
- esm-ohri-pmtct-app (PMTCT App)
- Clone the openmrs-esm-ohri repo.
git clone https://github.com/UCSF-IGHS/openmrs-esm-ohri.git
- Setup repository
yarn setup
- Start all packages on
localhost:8080
.
yarn start
This command start each package inside the packages
directory with the development mode connected to the https://ohri-demo.globalhealthapp.net backend. This is the actual script:
If you would like to run individual packages, you can use the following command:
yarn start:<package-name>
# for example
# To start ohri core
yarn start:core
# To start covid esm
yarn start:covid
# To start hiv esm
yarn start:hiv
# To start cervical-cancer esm
yarn start:cervical-cancer
# To start form-render esm
yarn start:form-render
# To start pmtct esm
yarn start:pmtct
To verify that all of the tests run:
yarn test
Note: Run npm i
before running tests for the first time.
TBD
This module is designed to be driven by configuration files. These files define the look and functionality required to drive the OHRI module.
Note: Currently, the module cannot be configured as it is in the early stages of development.
Optional Steps:
To run against a deployment server (to reflect local changes that will be on server upon Deployment):
On terminal run -> npx openmrs develop --backend https://{server-address}
(tbd)
(tbd)