Notice: As of release 5.6.118, the core libraries use the fhir-settings.json file. This page is kept as a reference for previous versions.

When executing the FHIR Java Tools, the code occasionally needs to know the locations of local supporting tools. 

These may be provided by setting environment variables (e.g. system path) and sometimes this happens automatically. But this doesn't always happen, and sometimes the right environment variables are not passed to the tool. If this happens, then the file fhir-tool-settings file can provide these settings.

Location of the fhir-tool-settings file:

  • Windows: c:\users\<username>\.fhir\fhir-tool-settings.conf
  • Unix/Linux: /~/.fhir/fhir-tool-settings.conf

The format of the file is a windows ini file:

[paths]
npm=/Users/grahamegrieve/.nvm/versions/node/v17.4.0/bin
ruby=/Users/grahamegrieve/.gem/ruby/3.1.0/bin:/Users/grahamegrieve/.gem/ruby/3.1.0/bin:/opt/homebrew/opt/ruby/bin:/Users/grahamegrieve/.nvm/versions/node/v17.4.0/bin:/opt/homebrew/bin:/opt/homebrew/sbin
tests=/Users/grahamegrieve/work/test-cases
compare=opendiff
temp=/Users/grahamegrieve/temp


The details of the entries depend on how the software was installed etc


Documentation:

PathMeaning
npmThe location of the npm executable so that sushi can be run. You can generally get this directory from the system path in your shell of choice
rubyThe location of the ruby+gem executables so that Jekyll can be run. This typically requires more than one path. You can generally get the directories from the system path in your shell of choice
testsYour local copy of the https://github.com/FHIR/fhir-test-cases repository. Only needed if you are running the tests locally, and want to change the tests and run them before committing new/changed tests
comparethe source of the visual comparison application used to compare failing comparison tests. if no compare tool is specified, no visual comparison will be shown
temp

The location to use for temporary files. If nothing is specified, the system default temporary directory will be used.

OSX Note: the system default directory misbehaves in some ways that I haven't pinned down, so setting this is recommended in OSX

test-igsThe root of the folder that contains the test Its (see below)
serverThe local root for the https://github.com/HealthIntersections/fhirserver repository (for pascal development only)
markdownThe local root for the https://github.com/grahamegrieve/delphi-markdown repository (for pascal development only)
  • No labels