Getting Started - softcannery/camunda-formio-accelerator GitHub Wiki
Pre-requisites
- Camunda Modeler 5.x
- Camunda Modeler Formio Plugin
- Docker Desktop
- Docker Compose v2 (embedded to Docker Desktop, can be installed separately)
- OpenJDK 17
Install Camunda Modeler 5.x
- Download the last version of Camunda Modeler
- Unzip it to work directory
Install Formio Plugin
- Download last version of
formio-plugin.zip
from releases - Extract the downloaded formio-plugin.zip into its own folder inside your Camunda Modeler plugins folder (example: ".../plugins/formio-plugin/" should then contain the contents of the .zip file you downloaded). Depending on the operating system you are using you can find your plugins folder here:
Windows:
%APPDATA%/camunda-modeler/plugins
Linux:
$XDG_CONFIG_HOME/camunda-modeler/plugins
or
~/.config/camunda-modeler/plugins
Mac OS:
~/Library/Application Support/camunda-modeler/resources/plugins
or
/Users/{USER_NAME}/Library/Application Support/camunda-modeler/resources/plugins
Verify the plugin is installed correctly and make sure that you select "Camunda Platform 7" for BPMN diagram:
Start application
Run application with docker-compose
-
docker compose pull
-
docker compose up -d --no-build
Local build and run
-
mvn package -ntp
-
docker compose build
-
docker compose up -d
Use application
-
Create and save new BPMN diagram in Modeler
-
Start application
-
Go to localhost and Deploy created form and/or diagram
- The process and forms should be deployed:
- Go to Start Process and choose your bpmn
- Fill out the form and submit it
- Go to Tasklist, Review, Approve or Reject created task
- Stop application
docker compose down