Gitlab migration

This commit is contained in:
Andreas Isler
2026-06-23 08:04:38 +02:00
commit 82717986a7
82 changed files with 4872 additions and 0 deletions
@@ -0,0 +1,12 @@
package com.flowable.local.design.angular;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class FlowableLocalDesignAngularApplication {
public static void main(String[] args) {
SpringApplication.run(FlowableLocalDesignAngularApplication.class, args);
}
}
@@ -0,0 +1,3 @@
# == Embedded DB ==
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:file:./h2-database/flowable-design-angular;DB_CLOSE_ON_EXIT=FALSE
@@ -0,0 +1,26 @@
server.port=8091
server.servlet.context-path=/
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/flowable
spring.datasource.username=flowable
spring.datasource.password=flowable
# In order for hot swapping to work for the custom.js and custom.css
spring.thymeleaf.cache=false
spring.web.resources.chain.cache=false
# Enable all endpoints over HTTP
management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=ALWAYS
# Pretty-print JSON responses
spring.jackson.serialization.indent_output=true
flowable.modeler.app.user-store.password=test
flowable.common.app.idm-url=http://localhost:8090
flowable.common.app.idm-admin.user=admin
flowable.common.app.idm-admin.password=test
flowable.modeler.app.db-store-enabled=false
flowable.modeler.app.deployment-api-url=http://localhost:8090/app-api
flowable.modeler.app.undeployment-api-url=http://localhost:8090/platform-api/app-deployments