https://github.com/nonblocking/fhir-test
https://github.com/nonblocking/fhir-test
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/nonblocking/fhir-test
- Owner: nonblocking
- Created: 2025-06-18T07:55:21.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-20T06:06:36.000Z (about 1 year ago)
- Last Synced: 2025-06-20T07:21:33.886Z (about 1 year ago)
- Language: Java
- Size: 85.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FHIR Test Repo
FHIR sample setup consists of:
* Two different FHIR servers (stores), one based on HAPI-FHIR and one on Open eHealth Integration Platform/IPF
* An API Gateway (in this case basically a FHIR-Gateway) based on Spring Cloud Gateway
* A simple client consuming the FHIR resources based on React
## Requirements
* Java >= 21
* Node >= 20
## Run
### FHIR Server 1
cd fhir-server1
./mvnw spring-boot:run
Capabilities: http://localhost:5556/metadata
Patient 1: http://localhost:5556/Patient/1
### FHIR Server 2
cd fhir-server2
./mvnw spring-boot:run
Capabilities: http://localhost:5557/fhir/metadata
Document Reference 1: http://localhost:5557/fhir/DocumentReference/1
### API/FHIR Gateway
cd api-gateway
./mvnw spring-boot:run
Patient 1: http://localhost:5558/fhir/Patient/1
Document Reference 1: http://localhost:5558/fhir/DocumentReference/1
### Frontend
cd simple-frontend
npm i
npm start
Open: http://localhost:5559
Fetches a Patient resource via API Gateway from FHIR Server 1 (base URL http://localhost:5558/fhir)