fp/services/worker/.config/bullmq.config.ts
2025-11-12 07:54:01 -08:00

9 lines
209 B
TypeScript

import { Queue as QueueMQ, Worker, type QueueOptions, type JobsOptions, type Job } from 'bullmq';
export const connection: QueueOptions['connection'] = {
host: '127.0.0.1',
port: 6379,
password: ''
};