adonisjs-queue
Version:
An addon/plugin package to provide driver-based job queueing services in AdonisJS 4.0+
30 lines (21 loc) • 643 B
Markdown
Like any other provider, you need to register the provider inside `start/app.js` file.
```js
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.
```js
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](https://github.com/stitchng/adonis-queue).