├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── databases ├── empty │ └── .gitkeep ├── r2-full │ └── .gitkeep ├── r2-smart │ ├── .gitkeep │ └── h2.mv.db ├── r2-synthea │ └── .gitkeep ├── r3-full │ └── .gitkeep ├── r3-pro │ ├── .gitkeep │ └── h2.mv.db ├── r3-smart │ ├── .gitkeep │ └── h2.mv.db ├── r3-synthea │ └── .gitkeep └── r4-synthea │ └── .gitkeep ├── hapi.properties ├── server.xml ├── smart-logo.svg └── tmpl-banner.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/README.md -------------------------------------------------------------------------------- /databases/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r2-full/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r2-smart/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r2-smart/h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/databases/r2-smart/h2.mv.db -------------------------------------------------------------------------------- /databases/r2-synthea/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r3-full/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r3-pro/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r3-pro/h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/databases/r3-pro/h2.mv.db -------------------------------------------------------------------------------- /databases/r3-smart/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r3-smart/h2.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/databases/r3-smart/h2.mv.db -------------------------------------------------------------------------------- /databases/r3-synthea/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /databases/r4-synthea/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hapi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/hapi.properties -------------------------------------------------------------------------------- /server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/server.xml -------------------------------------------------------------------------------- /smart-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/smart-logo.svg -------------------------------------------------------------------------------- /tmpl-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/hapi/HEAD/tmpl-banner.html --------------------------------------------------------------------------------