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