A tool for building FHIR transaction bundles based on example instances in designated FHIR IG's. This makes it easy to bootstrap or load existing FHIR servers that supports transaction bundles with test/example data from IG's. Where ember solely focuses on example resources the tool at https://github.com/brianpos/UploadFIG also handles other scenarios.
There are 6 parameters:
directory: (only works with FHIR R5 - optional) can be used if you just wan't to scrape a directory of FHIR resources and combine them to a FHIR transaction bundle.serverBase: (optional) Ifserverbaseis omitted, the total bundle transaction is printed in the terminal aka. a "dry-run". Ifserverbaseis provided it will send the bundle transaction to the server address.packageId: ThepackageIdis the IG id and version.includeSearchBundles: (optional) By default search bundles are not included - they can be by settingincludeSearchBundlesto true.location: Thelocationparameter can be used to point to a local package usingfile:/...or a remote package usinghttp://.... If doing so, do omit the use ofpackageId. The package will automatically be fetched and installed into the local fhir cache. The local FHIR cache can be mapped into the image (when using Docker)loadRecursively: (optional)loadRecursivelyis by default false - if set to true, all example instances from parent IG's/dependencies recursively are also included in the total transaction bundle.docsAndLists: Only look for Bundles and Lists. Useful for Document heavy IG's like https://build.fhir.org/ig/hl7-eu/gravitate-health/toc.htmlusePUT: Make the transaction entries as PUT instead of POST.
You can run it using eg:
docker run jkiddo/ember --packageId=ch.fhir.ig.ch-core#2.0.0
or with the existing local FHIR cache (Mapping the local FHIR into the image and fetching the package using HTTP ):
docker run -v /Users/jkv/.fhir:/home/nonroot/.fhir jkiddo/ember --location=https://build.fhir.org/ig/hl7-eu/gravitate-health/package.tgz
Do docker buildx build --platform=linux/arm64,linux/amd64 . --push -t jkiddo/ember:x.y.z
See https://hub.docker.com/repository/docker/jkiddo/ember/general