Skip to content

Commit

Permalink
Release v0.6.2-beta.1
Browse files Browse the repository at this point in the history
* Disable Name Resolution in Proxy Mode (#29)
  • Loading branch information
alexanderkiel committed Sep 5, 2019
1 parent 931e454 commit 538c40a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ RUN lein uberjar

FROM openjdk:8u222-jre

COPY --from=build /build/target/blaze-0.6.1-standalone.jar /app/
COPY --from=build /build/target/blaze-0.6.2-beta.1-standalone.jar /app/

WORKDIR /app

CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.1-standalone.jar"]
CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.2-beta.1-standalone.jar"]
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.6.1][5]
Latest release: [v0.6.2-beta.1][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.6.1
docker run -p 8080:8080 liferesearch/blaze:0.6.2-beta.1
```

### Java

```bash
wget https://github.com/life-research/blaze/releases/download/v0.6.1/blaze-0.6.1-standalone.jar
java -jar blaze-0.6.1-standalone.jar
wget https://github.com/life-research/blaze/releases/download/v0.6.2-beta.1/blaze-0.6.2-beta.1-standalone.jar
java -jar blaze-0.6.2-beta.1-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.6.1>
[5]: <https://github.com/life-research/blaze/releases/tag/v0.6.2-beta.1>
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.6.1"
image: "liferesearch/blaze:0.6.2-beta.1"
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.6.1[here].
Look for `blaze-0.6.1-standalone.jar`.
Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.6.2-beta.1[here].
Look for `blaze-0.6.2-beta.1-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.6.1-standalone.jar
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.6.2-beta.1-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 project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject blaze "0.6.1"
(defproject blaze "0.6.2-beta.1"
:description "A FHIR Store with internal, fast CQL Evaluation Engine"
:url "https://github.com/life-research/blaze"

Expand Down
2 changes: 1 addition & 1 deletion src/blaze/system.clj
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

;; ---- Functions -------------------------------------------------------------

(def ^:private version "0.6.1")
(def ^:private version "0.6.2-beta.1")

(def ^:private base-url "http://localhost:8080")

Expand Down

0 comments on commit 538c40a

Please sign in to comment.