generated from intersystems-community/objectscript-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
module.xml
executable file
·43 lines (43 loc) · 1.61 KB
/
module.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25">
<Document name="fhir-server.ZPM">
<Module>
<Name>fhir-server</Name>
<Version>1.3.3</Version>
<Description>InterSystems FHIR Server with a demo frontend</Description>
<Keywords>FHIR,Server</Keywords>
<Packaging>module</Packaging>
<SystemRequirements Interoperability="enabled" Health="true"/>
<Default Name="name" Value="FHIRSERVER" />
<Default Name="Webapp" Value="/fhir/r4" />
<Default Name="AddTestData" Value="1" />
<SourcesRoot>src</SourcesRoot>
<Invokes>
<Invoke Class="fhirtemplate.Setup" Method="SetupFHIRServer" Phase="Activate" When="After" >
<Arg>${name}</Arg>
<Arg>${Webapp}</Arg>
<Arg>${AddTestData}</Arg>
</Invoke>
</Invokes>
<Resource Name="fhirtemplate.PKG"/>
<Resource Name="User.PKG"/>
<Resource Name="FHIR.PKG"/>
<FileCopy Name="data/fhir/" Target="${mgrdir}test-data-fhir/"/>
<CSPApplication
Url="/fhirUI"
SourcePath="/fhirUI"
DeployPath="{$cspdir}/fhirUI"
ServeFiles="1"
Recurse="1"
CookiePath="/fhirUI"
/>
<AfterInstallMessage>
You can change the default settings
Name - to alter created/modified namespace (now/default FHIRSERVER)
AddTestData - import some test data to the FHIR server, otherwise don't
Webapp - provide the name for the web application to expose R4 API. /fhir/r4 is by default
USER>zpm "install fhir-server -Dzpm.name=ALTERFHIRSERVER -Dzpm.Webapp=/fhir/r7 -Dzpm.AddTestData=0"
</AfterInstallMessage>
</Module>
</Document>
</Export>