Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
saig0 authored Aug 18, 2017
1 parent 8b0c58a commit fde2fdb
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# zb-dmn-extension
Zeebe task worker for DMN. It uses the Camunda DMN engine to evaluate decisions. The decisions are read from a directory (default 'repo').
Zeebe task worker for DMN. It uses the Camunda DMN engine to evaluate decisions. The decisions are read from local directory.

* register for tasks of type 'DMN'
* task requires a header 'decisionRef' which holds the id of the decision to evaluate
* task is completed with payload 'result' which contains the decision result
* required task header 'decisionRef' => id of the decision to evaluate
* completes task with payload 'result' which contains the complete decision result

## How to build

Build with Maven

`mvn clean install`

## How to run

Execute the JAR file via

`java -jar target/zeebe-dmn.jar`

## How to configure

You can provide a properties file `application.properties` to configure the Zeebe client and set

* the directory of the DMN repository (default: 'repo')
* the task topic (default: 'default-topic')

0 comments on commit fde2fdb

Please sign in to comment.