Files
kestra/settings.gradle
Ludovic DEHON 1fef7509bb feat(ui): introduce web ui (#12)
Introduce a web ui with initial support for :
* Flows list  (optionally filter by namespace) 
* Flow Detail : 
  * Initial topology view
  * Flow Executions 
  * Edit flow 
  * Trigger flow
* Executions List  
* Executions Detail : 
  * Overview 
  * Gantt view 
  * Logs 
  * Initial topology view
2019-12-26 14:55:33 +01:00

21 lines
344 B
Groovy

rootProject.name="floworc"
include 'cli'
include 'core'
include 'runner-memory'
include 'runner-kafka'
include 'storage-local'
include 'storage-gcs'
include 'storage-minio'
include 'repository-elasticsearch'
include 'repository-memory'
include 'task-gcp'
include 'task-notifications'
include 'task-serdes'
include 'webserver'
include 'ui'