From 86d87a3d34a13b2fed508420fc3a442b96369def Mon Sep 17 00:00:00 2001 From: Ivan Cvitkovic Date: Mon, 26 Jun 2023 16:43:52 -0700 Subject: [PATCH] Add docs/README for Hapi FHIR --- dev/hapi/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dev/hapi/README.md diff --git a/dev/hapi/README.md b/dev/hapi/README.md new file mode 100644 index 0000000..9b275ab --- /dev/null +++ b/dev/hapi/README.md @@ -0,0 +1,20 @@ +# Hapi FHIR +Configuration required to deploy a review version of Hapi FHIR server + +## Setup +Copy the default env files: + + for file in *.default; do + cp "$file" "${file%%.default}" + done + +Copy the `.env` file default: + + cp default.env .env + +Modify any `.env` files as necessary. Lines that are not commented-out are required, commented lines are optional. + +## Deploy +To pull the latest configured docker images, and re-deploy services as necessary, run the following command: + + docker-compose pull && docker-compose up --detach