Last active
May 11, 2025 14:41
-
-
Save jkiddo/d76ef496ca56dfa024f149f90a93783e 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:file:./target/database/h2' | |
| 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: R5 | |
| ig_runtime_upload_enabled: false | |
| validate_resource_status_for_package_upload: false | |
| implementationguides: | |
| mpd: | |
| name: hl7.fhir.eu.r5.mpd | |
| version: 0.1.0 | |
| package-url: https://build.fhir.org/ig/hl7-eu/mpd/branches/r5/package.tgz | |
| install-mode: STORE_AND_INSTALL | |
| imaging: | |
| name: hl7.fhir.eu.imaging-r5 | |
| version: 0.1.0-ballot | |
| package-url: https://build.fhir.org/ig/hl7-eu/imaging/branches/connecthaton39/package.tgz | |
| install-mode: STORE_AND_INSTALL | |
| ihe_mpd: | |
| name: ihe.pharm.mpd | |
| version: 1.0.0-comment | |
| package-url: https://profiles.ihe.net/PHARM/MPD/1.0.0-comment/package.tgz | |
| install-mode: STORE_AND_INSTALL | |
| remote_terminology_service: | |
| all: | |
| system: '*' | |
| url: 'https://tx.hl7europe.eu/r5/' | |
| tester: | |
| home: | |
| name: Local Tester | |
| server_address: 'http://localhost:8080/fhir' | |
| refuse_to_fetch_third_party_urls: false | |
| fhir_version: R5 | |
| global: | |
| name: Global Tester | |
| server_address: 'http://hapi.fhir.org/baseR5' | |
| refuse_to_fetch_third_party_urls: false | |
| fhir_version: R5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment