https://github.com/theproductiveprogrammer/flowable-service-tasks
Sample repository for creating service tasks for a Flowable Docker
https://github.com/theproductiveprogrammer/flowable-service-tasks
Last synced: 3 months ago
JSON representation
Sample repository for creating service tasks for a Flowable Docker
- Host: GitHub
- URL: https://github.com/theproductiveprogrammer/flowable-service-tasks
- Owner: theproductiveprogrammer
- Created: 2020-05-06T13:43:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-08T05:09:24.000Z (over 5 years ago)
- Last Synced: 2025-02-28T18:23:56.926Z (9 months ago)
- Language: Java
- Size: 58 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flowable Service Tasks
## Problem
We need a way to add service tasks to a flowable docker container.
## Way
Add service tasks to this repository (under `com.salesboxai.flowable`) and then run the `build.sh` to rebuild `flowable-tasks.war` and create a new docker image called `flowable`.
### Example
This repository is an eclipse project populated with a test Flowable Service that does nothing but print out a message when invoked.

Now we build the new Docker image
```sh
$ ./build.sh
```
Then we run the flowable and we’re done!
```sh
$ ./run.sh
```
## Demo
See the [demo video](https://youtu.be/Jm_p23FImwE).
## Setting JDBC
By default the docker image uses the in-memory `h2` database. This can be overridden by setting the `application.properties` file contained in this repo.