Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 649 Bytes

README.md

File metadata and controls

42 lines (35 loc) · 649 Bytes

Examples

These examples will help you learn basic Camunda use cases.

Before use:

Run Camunda:

docker run --rm --name camunda -p 8080:8080 camunda/camunda-bpm-platform

Examples use scenario

Deploy helloWorld.pbmn

cd deployment
go build
./deployment

Run external task processor

cd processor
go build
./processor

Start 1000 process

cd start-process
go build
./start-process

Show process history from history

  1. Open http://127.0.0.1:8080/camunda/
  2. Login demo/demo
  3. Find and copy Process Instance ID
cd history
go build
./history --id={Process_Instance_ID}