generated from intersystems-community/objectscript-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
incompatibility fix to support FHIR in IRIS 2023.2
- Loading branch information
Showing
4 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,20 @@ | |
zpm "load /home/irisowner/irisdev/ -v":1:1 | ||
zpm "install fhir-portal" | ||
halt | ||
/// the below is not important anymore. | ||
/// the below is not important anymore. | ||
|
||
zn "HSLIB" | ||
set namespace="FHIRSERVER" | ||
|
||
Set appKey = "/fhir/r4" | ||
Set strategyClass = "HS.FHIRServer.Storage.Json.InteractionsStrategy" | ||
set metadataPackages = $lb("[email protected]") | ||
set importdir="/opt/irisapp/src" | ||
|
||
//Install a Foundation namespace and change to it | ||
Do ##class(HS.HC.Util.Installer).InstallFoundation(namespace) | ||
//Do ##class(HS.HC.Util.Installer).InstallFoundation(namespace) | ||
Do ##class(HS.Util.Installer.Foundation).Install(namespace) | ||
|
||
zn namespace | ||
|
||
// Install elements that are required for a FHIR-enabled namespace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters