Created
May 10, 2025 15:40
-
-
Save jkiddo/5a3a10c8f1be84f0100e7847f0c96aa2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
server: | |
port: 8080 | |
tomcat: | |
relaxed-query-chars: '|' | |
spring: | |
main: | |
allow-circular-references: true | |
flyway: | |
enabled: false | |
baselineOnMigrate: true | |
fail-on-missing-locations: false | |
datasource: | |
url: 'jdbc:h2:mem:test_mem' | |
username: sa | |
password: null | |
driverClassName: org.h2.Driver | |
max-active: 15 | |
hikari: | |
maximum-pool-size: 10 | |
jpa: | |
properties: | |
hibernate.format_sql: false | |
hibernate.show_sql: false | |
hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect | |
hibernate.search.enabled: false | |
hapi: | |
fhir: | |
openapi_enabled: true | |
fhir_version: R4 | |
ig_runtime_upload_enabled: false | |
validate_resource_status_for_package_upload: false | |
implementationguides: | |
base: | |
name: hl7.fhir.eu.base | |
version: 0.1.0-ballot | |
package-url: 'https://build.fhir.org/ig/hl7-eu/base/package.tgz' | |
install-mode: STORE_AND_INSTALL | |
labs: | |
name: hl7.fhir.eu.laboratory | |
version: 0.2.0-ci | |
package-url: 'https://build.fhir.org/ig/hl7-eu/laboratory/package.tgz' | |
install-mode: STORE_AND_INSTALL | |
eps: | |
name: hl7.fhir.eu.eps | |
version: 0.0.1-ci | |
package-url: >- | |
https://build.fhir.org/ig/hl7-eu/eps/branches/update-dependencies/package.tgz | |
install-mode: STORE_AND_INSTALL | |
remote_terminology_service: | |
snomed: | |
system: 'http://snomed.info/sct' | |
url: 'https://tx.fhir.org/r4/' | |
loinc: | |
system: 'http://loinc.org' | |
url: 'https://tx.fhir.org/r4/' | |
tester: | |
home: | |
name: Local Tester | |
server_address: 'http://localhost:8080/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment