Skip to content

Files

Latest commit

5b9b9ff · Nov 28, 2021

History

History
This branch is 1 commit ahead of, 17 commits behind citilinkru/camunda-client-go:master.

examples

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}