Skip to content

Commit

Permalink
Version 0.7.0-alpha.10
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Nov 24, 2019
1 parent 4d68e04 commit 1a3c415
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.7.0-alpha.9"
VERSION = "0.7.0-alpha.10"

check:
clojure -A:check
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The goal of this project is to provide a FHIR® Store with an internal CQL Evalu

The project is currently under active development. Essentially all official [CQL Tests][3] pass. Please report any issues you encounter during evaluation.

Latest release: [v0.7.0-alpha.9][5]
Latest release: [v0.7.0-alpha.10][5]

## Quick Start

Expand All @@ -23,14 +23,14 @@ In order to run Blaze with an in-memory, volatile database, just execute the fol
### Docker

```bash
docker run -p 8080:8080 liferesearch/blaze:0.7.0-alpha.9
docker run -p 8080:8080 liferesearch/blaze:0.7.0-alpha.10
```

### Java

```bash
wget https://github.com/life-research/blaze/releases/download/v0.7.0-alpha.9/blaze-0.7.0-alpha.9-standalone.jar
java -jar blaze-0.7.0-alpha.9-standalone.jar
wget https://github.com/life-research/blaze/releases/download/v0.7.0-alpha.10/blaze-0.7.0-alpha.10-standalone.jar
java -jar blaze-0.7.0-alpha.10-standalone.jar
```

Logging output should appear which prints the most important settings and system parameters like Java version and available memory.
Expand All @@ -56,4 +56,4 @@ your option) any later version.
[2]: <http://cql-runner.dataphoria.org/>
[3]: <https://cql.hl7.org/tests.html>
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
[5]: <https://github.com/life-research/blaze/releases/tag/v0.7.0-alpha.9>
[5]: <https://github.com/life-research/blaze/releases/tag/v0.7.0-alpha.10>
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
volumes:
- "db-data:/data"
store:
image: "liferesearch/blaze:0.7.0-alpha.9"
image: "liferesearch/blaze:0.7.0-alpha.10"
environment:
BASE_URL: "http://localhost:8080"
DATABASE_URI: "datomic:free://db:4334/dev?password=datomic"
Expand Down
6 changes: 3 additions & 3 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ You can change the data dir in the properties file if you like to have it at a d
==== Install Blaze

Blaze runs on the JVM and comes as single JAR file.
Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.7.0-alpha.9[here].
Look for `blaze-0.7.0-alpha.9-standalone.jar`.
Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.7.0-alpha.10[here].
Look for `blaze-0.7.0-alpha.10-standalone.jar`.
In addition to the JAR file, Blaze needs a set of FHIR® structure definitions to build it's database schema.
Please download and unpack the `fhir.zip` from the same location.

After the download, you can start blaze with the following command (Linux, MacOS):

```
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.7.0-alpha.9-standalone.jar
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.7.0-alpha.10-standalone.jar
```

Under Windows you need to set the Environment variables in the PowerShell before starting Blaze:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>life-research</groupId>
<artifactId>blaze</artifactId>
<version>0.7.0-alpha.9</version>
<version>0.7.0-alpha.10</version>
<name>blaze</name>

<description>A FHIR Store with internal, fast CQL Evaluation Engine</description>
Expand Down
2 changes: 1 addition & 1 deletion src/blaze/system.clj
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@


(def ^:private root-config
{:blaze/version "0.7.0-alpha.9"
{:blaze/version "0.7.0-alpha.10"

:blaze/clock {}

Expand Down

0 comments on commit 1a3c415

Please sign in to comment.