Skip to content

Latest commit

 

History

History

flowable

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Image containing all Flowable UI apps running on Tomcat (with a in memory H2 database).

还可以使用这个:

sudo docker run -p8080:8080 flowable/flowable-idm

sudo docker run -p9988:9988 -e FLOWABLE_COMMON_APP_IDM-URL=http://192.168.17.129:8080/flowable-idm -e FLOWABLE_COMMON_APP_IDM-ADMIN_USER=admin -e FLOWABLE_COMMON_APP_IDM-ADMIN_PASSWORD=test flowable/flowable-admin

Ref

配置

项目:https://gitee.com/tony2y/RuoYi-flowable 在pom.xml中设置依赖:

<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-engine</artifactId>
    <version>6.3.0</version>
</dependency>

所需条件:

  • localhost开启redis
  • 修改ruoyi-admin/src/main/resources/application-druid.yml中的jdbc连接
  • 修改ruoyi-admin/src/main/resources/application.yml中的redis密码
  • 创建一个新的数据库ry_6_7_2,并source flowable.sql, quartz.sql, system.sql

执行命令:

java -jar ./ruoyi-admin/target/ruoyi-admin.jar

启动完之后张这样: image

这个只是后端。 前端需要:

cd ruoyi-ui
npm install
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
# npm install --registry=https://registry.npm.taobao.org
npm run dev