From ec55cfa98dbcb121eba6f7c18456ff9df92aa146 Mon Sep 17 00:00:00 2001 From: Kai Kewley Date: Tue, 30 May 2017 14:24:33 +0100 Subject: [PATCH 1/2] Update README - delete index directory. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9458bf7..40c26ea 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ mvn clean package java -jar target/*.jar --loadRelease="/my-documents/SnomedCT_RF2Release_INT_20160131" java -jar target/*.jar --serve ``` +This will create an "index" directory. This directory must be removed before running the load process again. ## Documentation / Live Demo Once the service is running Swagger API documentation can be found at: http://localhost:8080/ From 0545823b2f320dc0ab68799e4392ed581e07fc07 Mon Sep 17 00:00:00 2001 From: Kai Kewley Date: Tue, 13 Jun 2017 16:03:00 +0100 Subject: [PATCH 2/2] Update README - use binary from releases page. --- README.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 40c26ea..40c9f78 100644 --- a/README.md +++ b/README.md @@ -41,20 +41,15 @@ Not Equal To Attribute Value | < 404684003 \|clinical finding\|: 116676008 \|ass ## Quick Start -Unzip your release archive, clone the project, use maven to build, load your release then serve. +Download the latest release Jar from the [releases](https://github.com/IHTSDO/snomed-query-service/releases) page, unzip your SNOMED RF2 archive, load your SNOMED content and then serve. ``` cd my-documents unzip SnomedCT_RF2Release_INT_20160131.zip -git clone https://github.com/ihtsdo/snomed-query-service.git -cd snomed-query-service -mvn clean package -java -jar target/*.jar --loadRelease="/my-documents/SnomedCT_RF2Release_INT_20160131" -java -jar target/*.jar --serve +java -jar snomed-query-service-1.1.0.jar --loadRelease="/my-documents/SnomedCT_RF2Release_INT_20160131" +java -jar snomed-query-service-1.1.0.jar --serve ``` This will create an "index" directory. This directory must be removed before running the load process again. - -## Documentation / Live Demo -Once the service is running Swagger API documentation can be found at: http://localhost:8080/ +Once the service is running in serve mode Swagger API documentation can be found at: http://localhost:8080/ ## Example Expression Constraint Language queries: Follow the quick start to use these examples: @@ -70,6 +65,15 @@ This is useful for running multiple instances of the tool to serve more releases java -jar target/*.jar --serve --server.port=8081 ``` +### Building the software yourself +If you would like to build this open source software yourself it's simple with maven: +``` +git clone https://github.com/ihtsdo/snomed-query-service.git +cd snomed-query-service +mvn clean package +``` +Find the binaries in the target directory. + ### Licence Apache 2.0 Open Source Licence