Like any other provider, you need to register the provider inside start/app.js
file.
const providers = [
...
'adonisjs-queue/providers/QueueProvider',
'adonisjs-queue/providers/JobProvider'
]
Also, you need to register the provider for job
commands via ace inside the same start/app.js
file.
const aceProviders = [
...
'adonisjs-queue/providers/JobCommandsProvider'
]
The configuration is saved inside config/queue.js
file. Tweak it accordingly.
To find out more, read the docs here.