This repository contains links to Flowset Tasklist resources and supporting configuration files for running Docker Compose as a local development option.
The following Docker Compose files are provided:
- docker-compose.yaml which contains the Flowset Tasklist only. Note: This Docker Compose is suitable for cases when you need to connect to already running external BPM engines.
- Clone this repository
- Configure your first connection to the Camunda 7 engine in the
.envfile. Set values for theBPM_ENGINE_API_URLandBPM_ENGINE_TYPEvariables. Example for the Camunda 7 running locally on port 8082 with enabled REST API:Note: Basic authentication should be enabled for the engine REST API and the list of users should be configured on the engine side.BPM_ENGINE_API_URL=http://localhost:8082/engine-rest BPM_ENGINE_TYPE=CAMUNDA_7
- Configure the language which should be used to display Flowset Tasklist UI (by default, English is used):
Example, for German language:
FLOWSET_TASKLIST_LOCALE=de
- Go to the
docker-composedirectory:cd docker-compose - Execute the following commands:
Run Flowset Tasklist using the following command:
To check container status:
docker compose up -d
docker container ls -f "name=flowset-tasklist-react-community" - Open Flowset Tasklist in your browser using the link http://localhost.
Now you can deploy processes to the configured BPM engine and manage process instances running on this engine.
You can explore the environment variables used by services in the .env file and change them to run locally if
necessary.