import { Queue as QueueMQ, Worker, type QueueOptions, type JobsOptions, type Job } from 'bullmq'; import env from './env'; console.log(`using VALKEY_PORT=${env.VALKEY_PORT}`); export const connection: QueueOptions['connection'] = { host: '127.0.0.1', port: Number(env.VALKEY_PORT), password: '' };