From c2c2c5964587f95fd1085c6556fda63981edbf5c Mon Sep 17 00:00:00 2001 From: Damien Arnodo Date: Sun, 11 Jan 2026 11:26:55 +0000 Subject: [PATCH] feat: add Kestra application configuration --- application.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 application.yaml diff --git a/application.yaml b/application.yaml new file mode 100644 index 0000000..64af61f --- /dev/null +++ b/application.yaml @@ -0,0 +1,33 @@ +kestra: + server: + basic-auth: + enabled: true + username: ${KESTRA_ADMIN_USER:admin} + password: ${KESTRA_ADMIN_PASSWORD} + + repository: + type: postgres + + storage: + type: local + local: + base-path: /app/storage + + queue: + type: postgres + + tasks: + scripts: + docker: + volume-enabled: true + +datasources: + postgres: + url: jdbc:postgresql://${DB_HOST}:${DB_PORT}/${DB_NAME} + driverClassName: org.postgresql.Driver + username: ${DB_USER} + password: ${DB_PASSWORD} + +micronaut: + server: + port: 8080