Skip to content

Commit

Permalink
Version 0.7.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Dec 4, 2019
1 parent 42d7ab7 commit fb55bed
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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-fix-code.3"
VERSION = "0.7.0-beta.3"

check:
clojure -A:check
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-fix-code.3
docker run -p 8080:8080 liferesearch/blaze:0.7.0-beta.3
```

### Java

```bash
wget https://github.com/life-research/blaze/releases/download/v0.7.0-beta.1/blaze-0.7.0-fix-code.3-standalone.jar
java -jar blaze-0.7.0-fix-code.3-standalone.jar
wget https://github.com/life-research/blaze/releases/download/v0.7.0-beta.1/blaze-0.7.0-beta.3-standalone.jar
java -jar blaze-0.7.0-beta.3-standalone.jar
```

Logging output should appear which prints the most important settings and system parameters like Java version and available memory.
Expand Down
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-fix-code.3"
image: "liferesearch/blaze:0.7.0-beta.3"
environment:
BASE_URL: "http://localhost:8080"
DATABASE_URI: "datomic:free://db:4334/dev?password=datomic"
Expand Down
4 changes: 2 additions & 2 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ You can change the data dir in the properties file if you like to have it at a d

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-beta.1[here].
Look for `blaze-0.7.0-fix-code.3-standalone.jar`.
Look for `blaze-0.7.0-beta.3-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-fix-code.3-standalone.jar
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.7.0-beta.3-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-fix-code.3</version>
<version>0.7.0-beta.3</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-fix-code.3"
{:blaze/version "0.7.0-beta.3"

:blaze/clock {}

Expand Down

0 comments on commit fb55bed

Please sign in to comment.