From 313e6b3e2c4a1de842621ef4d1523c5816ecd74d Mon Sep 17 00:00:00 2001 From: Jens Kristian Villadsen <46567685+jvitrifork@users.noreply.github.com> Date: Sun, 25 Oct 2020 20:28:55 +0100 Subject: [PATCH] Update README.md Added spring-boot:run optionality --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 0c7b32b..c5be768 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,21 @@ Server will then be accessible at http://localhost:8888/ and eg. http://localhos fhir_version: R4 ``` +### Using Spring Boot with :run +```bash +mvn clean spring-boot:run -Pboot +``` +Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to eg. +```yaml + tester: + - + id: home + name: Local Tester + server_address: 'http://localhost:8080/fhir' + refuse_to_fetch_third_party_urls: false + fhir_version: R4 +``` ### Using Spring Boot ```bash