An open API service indexing awesome lists of open source software.

https://github.com/novatecconsulting/flowable-process-modeler

Spring boot project to run the Flowable Process Modeler
https://github.com/novatecconsulting/flowable-process-modeler

Last synced: 4 months ago
JSON representation

Spring boot project to run the Flowable Process Modeler

Awesome Lists containing this project

README

        

## Flowable Process Modeler App

This project contains a spring boot application to launch the web based flowable process modeler app.
Alternatively you can download the flowable war file and deploy it yourself.

**There is currently no standalone Desktop version of the modeler available**

## How to run it

- Start the application like a regular spring boot application
- Run `./gradlew bootRun` or via IntelliJ in the main class `FlowableModeler.java`
- Open the ui app under `http://localhost:8080/idm/#/login`
- Enter the credentials `admin:test`
- Open the app "Modeler App" in the UI
- Start creating your process models

## How to set up external PostgreSQL database

- Run `docker run --name flowable-postgres -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres`
- Uncomment `implementation "org.postgresql:postgresql:42.2.19"` in `build.gradle`
- Uncomment spring-datasource in `application.yaml`