mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
bf45e97641
* Update types * fix circular dep * type imports * lint type imports and --fix
26 lines
687 B
TypeScript
26 lines
687 B
TypeScript
import { createBullBoard } from "@bull-board/api";
|
|
import { BullAdapter } from "@bull-board/api/bullAdapter";
|
|
import { KoaAdapter } from "@bull-board/koa";
|
|
import type Koa from "koa";
|
|
import {
|
|
globalEventQueue,
|
|
processorEventQueue,
|
|
websocketQueue,
|
|
taskQueue,
|
|
} from "../queues";
|
|
|
|
export default function init(app: Koa) {
|
|
const serverAdapter = new KoaAdapter();
|
|
createBullBoard({
|
|
queues: [
|
|
new BullAdapter(globalEventQueue()),
|
|
new BullAdapter(processorEventQueue()),
|
|
new BullAdapter(websocketQueue()),
|
|
new BullAdapter(taskQueue()),
|
|
],
|
|
serverAdapter,
|
|
});
|
|
serverAdapter.setBasePath("/admin");
|
|
app.use(serverAdapter.registerPlugin());
|
|
}
|