Explorative area for early-stage concepts and implementations for the Spark FHIR Server
This repository exists to test concepts quickly, learn fast, and validate direction before committing to long-term design decisions.
Important
Ignis is an experimental project for early-stage exploration. Thus, the implementations in this repository are not intended for production use.
Start a local MongoDB instance with Docker:
docker run -d --name ignis-mongo -p 127.0.0.1:27017:27017 mongo:8Then run the API:
cd src/Ignis.Api
dotnet runThe API will be available at https://localhost:5201/fhir and the OpenAPI document at https://localhost:5201/openapi/v1.json.
See the infrastructure guide for testing Ignis on Kubernetes.