From 31a5c3d0c9a0665f657951cef6a3ab389c629815 Mon Sep 17 00:00:00 2001 From: Vladimir Ignatov Date: Wed, 19 Jun 2019 07:25:12 -0400 Subject: [PATCH] #4 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37fb624..51734e4 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Any config file might contain the following options: - `server` - an object describing the FHIR API server - `server.url` - The base URL of the FHIR API server to use. Note that the picker will only work with open servers that do not require authorization. - - `server.type` - The FHIR version. Currently this can be `DSTU-2` or `STU-3`. + - `server.type` - The FHIR version. Currently this can be `DSTU-2` or `STU-3` or `R4`. - `server.tags` - An array of tag objects to be rendered in the tags auto-complete menu. This defaults to an empty array and in that case the tag selection widget will not have a drop-down menu options but it will still allow you to search by typing some tag manually. In other words, using an empty array is like saying that we just don't know what tags (if any) are available on that server. The list of tags might look like this: ```js [ @@ -204,7 +204,7 @@ node generate_config.js -s http://127.0.0.1:18300 -f my-test-config ``` This will do the following: 1. Connect to the specified open server provided with the `-s` or `--server` option. -2. Load the conformance statement and detect the FHIR version (`"DSTU-2"` or `"STU-3"`). +2. Load the conformance statement and detect the FHIR version (`"DSTU-2"` or `"STU-3"` or `"R4"`). 3. Load all the conditions that are found ot that server. 4. Load config from `./build/config/my-test-config.json5` if it exists, where `my-test-config` comes from the `-f` or `--file` option. Otherwise use default config template. 5. Mix-in the FHIR version and the conditions.