You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ dashboard for monitoring and basic administration of tasks.
21
21
## Table of contents
22
22
23
23
*[Getting started](#getting-started)
24
+
*[Using with Ktor (non-Spring applications)](#using-with-ktor-non-spring-applications)
24
25
*[Prerequisites](#prerequisites)
25
26
*[How it works](#how-it-works)
26
27
*[Configuration](#configuration)
@@ -59,6 +60,29 @@ dashboard for monitoring and basic administration of tasks.
59
60
You do not need to add db-scheduler as a dependency.
60
61
3. Start your application. The db-scheduler UI can be reached at `<your-app-url>/db-scheduler`
61
62
63
+
## Using with Ktor (non-Spring applications)
64
+
65
+
If you want to use db-scheduler-ui without Spring dependencies, you can use the Ktor plugin provided by [db-scheduler-additions](https://github.com/osoykan/db-scheduler-additions).
scheduler = { get<Scheduler>() } // provide your Scheduler instance
79
+
enabled =true
80
+
taskData =true
81
+
}
82
+
```
83
+
84
+
For more details and advanced configuration (including execution history support), see the [db-scheduler-additions repository](https://github.com/osoykan/db-scheduler-additions).
85
+
62
86
## Optional: task history
63
87
64
88
If you want to add task history to your UI you need to add the following dependency:
0 commit comments