Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.3 change for helm v0.2.0 #2

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ COPY ./img/. /usr/local/tomcat/webapps/ROOT/img/

EXPOSE 8080

CMD ["catalina.sh", "run"]
CMD ["catalina.sh", "run"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

# Modifying the templates using an exploded version of the HAPI FHIR starter project

1) Build the docker image with the provided Dockerfile (eg. ```docker build . -t medcom ```).
1) Build the docker image with the provided Dockerfile (eg. ```docker build . --no-cache -t medcom ```).
2) Start the docker container by eg: ```docker run -p 80:8080 --add-host fhir.medcom.dk:172.20.0.11 -v $(pwd)/configs:/configs -e "--spring.config.location=file:///configs/medcom-core-v0.9.yaml" medcom```
3) Enjoy!
52 changes: 0 additions & 52 deletions configs/dev-0.9-leftovers.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,32 @@ spring:
batch:
job:
enabled: false
main:
allow-bean-definition-overriding: true


hapi:
fhir:
install_transitive_ig_dependencies: false
### This is the FHIR version. Choose between, dstu2, dstu3, r4 or r5
fhir_version: R4
defer_indexing_for_codesystems_of_size: 101
implementationguides:
medcom_09:
url: https://build.fhir.org/ig/hl7dk/dk-medcom/package.tgz
name: dk.fhir.ig.medcom-core
dk-core:
url: http://build.fhir.org/ig/hl7dk/dk-core/package.tgz
name: dk.fhir.ig.dk-core
version: 0.9
medcom:
url: http://build.fhir.org/ig/hl7dk/dk-medcom/package.tgz
name: dk.fhir.ig.medcom-core
version: 1.0.3

enable_repository_validating_interceptor: true

tester:
medcom:
name: MedCom Tester
server_address: https://fhir.medcom.dk/fhir
server_address: http://fhir.medcom.dk/fhir
refuse_to_fetch_third_party_urls: false
fhir_version: R4
global:
Expand Down
44 changes: 44 additions & 0 deletions configs/release1.0.3-fhirdev.medcom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
spring:
datasource:
url: "jdbc:h2:file:./target/database/h2"
username: sa
password: null
driverClassName: org.h2.Driver
max-active: 15

batch:
job:
enabled: false
main:
allow-bean-definition-overriding: true


hapi:
fhir:
install_transitive_ig_dependencies: false
### This is the FHIR version. Choose between, dstu2, dstu3, r4 or r5
fhir_version: R4
defer_indexing_for_codesystems_of_size: 101
implementationguides:
dk-core:
url: http://build.fhir.org/ig/hl7dk/dk-core/package.tgz
name: dk.fhir.ig.dk-core
version: 0.9
medcom:
url: http://build.fhir.org/ig/hl7dk/dk-medcom/package.tgz
name: dk.fhir.ig.medcom-core
version: 1.0.3

enable_repository_validating_interceptor: true

tester:
medcom:
name: MedCom Tester
server_address: http://fhirdev.medcom.dk/fhir
refuse_to_fetch_third_party_urls: false
fhir_version: R4
global:
name: Global Tester
server_address: "http://hapi.fhir.org/baseR4"
refuse_to_fetch_third_party_urls: false
fhir_version: R4
7 changes: 6 additions & 1 deletion templates/tmpl-home-welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
<div th:fragment="banner" class="well">
<p>
MedCom test FHIR server
<a href="http://build.fhir.org/ig/hl7dk/dk-medcom/">DK MedCom Core (R4) 0.9</a>
<a href="http://build.fhir.org/ig/hl7dk/dk-medcom/">DK MedCom Core (R4) 1.0</a>
<div style="background-color: rgb(255, 204, 204) ; padding: 2px; border: 1px solid green;">
<h4>Uploading of personal data to MedCom’s test tools is <u>prohibited.</u></h4>
<p>MedCom recommends using the specific national social security numbers for test purposes from the following list:
<a target="_blank" href="https://www.medcom.dk/opslag/koder-tabeller-ydere/tabeller/nationale-test-cpr-numre">https://www.medcom.dk/opslag/koder-tabeller-ydere/tabeller/nationale-test-cpr-numre</a></p>
</div>
</p>
<p>
This server is built
Expand Down