Installation
This guide shows how to install the go-bpmn process engine daemon and CLI.
- Download a compatible release artifact:
curl -L -o go-bpmn-linux-amd64.tar.gz https://github.com/gclaussn/go-bpmn/releases/download/v0.1.0/go-bpmn-linux-amd64.tar.gz
curl.exe -L -o go-bpmn-windows-amd64.tar.gz https://github.com/gclaussn/go-bpmn/releases/download/v0.1.0/go-bpmn-windows-amd64.tar.gz
Looking for a specific version? - View releases on Github
- Validate the downloaded archive:
echo "0e54a07819f4618522080d4b41bcbae42c912d3c0d48d04fad0a628974dc4dc4 go-bpmn-linux-amd64.tar.gz" | sha256sum -c
(Get-FileHash go-bpmn-windows-amd64.tar.gz).Hash -eq "1afdbf97d9cbe2a2d5a9c659d215cda28c0c687ac2ea73acf2ce762741e64c2c"
- Extract the archive:
tar -xvzf go-bpmn-linux-amd64.tar.gz
tar.exe -xvzf go-bpmn-windows-amd64.tar.gz
- Add executables to
PATH
environment variable:
sudo install -o root -g root -m 0755 go-bpmn /usr/local/bin/go-bpmn
sudo install -o root -g root -m 0755 go-bpmn-pgd /usr/local/bin/go-bpmn-pgd
Move the executables into a directory, which is included in the Path
.
Or add the directory to the Path
environment variable via Control panel -> Edit environment variables for your account.