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
- Host: GitHub
- URL: https://github.com/novatecconsulting/flowable-process-modeler
- Owner: NovatecConsulting
- License: apache-2.0
- Created: 2021-01-09T15:10:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-05T14:05:53.000Z (over 4 years ago)
- Last Synced: 2025-01-20T07:08:22.781Z (5 months ago)
- Language: Java
- Size: 67.4 KB
- Stars: 2
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`