The LinuxForHealth Patient Browser is an easy to use, standalone application that allows easy access to data stored in a FHIR server. The UI displays the data at the top level organized by patient. You can then drill into other resources related to that patient. Navigation is page by page or patient by patient.
The LinuxForHealth Patient Browser app is based on the SMART on FHIR Patient Browser
Instructions for a default deployment configuration are provided below where the Patient Browser application is deployed in a separate container to that of the FHIR server.
Instructions are provided here for a configuration to securely deploy the Patient Browser Application as a servlet in the same container as a FHIR server where the Patient Browser application will be just an additional protected resource to the FHIR server on Liberty.
Instructions are provided here for a configuration to securely deploy the Patient Browser Application by integrating with a FHIR server protected by a SMART App Launch authorization server that is built on Keycloak, as per the Health Data Access Reference Implementation.
$everything
operation)Git clone this repository and cd
into the chart
directory.
git clone https://github.com/LinuxForHealth/patient-browser
cd patient-browser/chart
In order to install the helm chart, you must provide the URL of a FHIR server and the base ingress hostname.
Important:
helm install fhir-ui . --set fhirServer=https://{my-fhir-server} --set ingress.hostname={INGRESS_HOSTNAME}
INGRESS_HOSTNAME
refers to the pre-determined domain name that will be used to access your FHIR Patient Browser instance.
Access your FHIR UI at: https://<<INGRESS_HOSTNAME>>/patient-browser/
To uninstall/delete the fhir-ui
deployment:
helm delete fhir-ui
Further details can be found in src/README.md