Add support for bull-board
Something I would also really like to have
https://github.com/felixmosh/bull-board/issues/797
Could you take a look? Maybe you can help with something. I’m not sure how I can create this adapter.
@RomainLanz
I have created a PR to add support for bull-board in Adonis v6 bull-board/pull/838 but I don't see any method in this package to pull all of the queues that are registered, would it be possible for you to expose a function to get all of the queues?
Passing queues by name works though:
import queue from '@rlanz/bull-queue/services/main'
createBullBoard({
queues: [new BullMQAdapter(queue.get('default'))],
serverAdapter,
})
would it be possible for you to expose a function to get all of the queues?
Sure, I have some plans to revamp the package a bit; I will take the opportunity to add that feature too!
support bull-board intergration is a good idea.