Implement BullMQ for background job processing

* new REDIS_URL environment variable
This commit is contained in:
Philipinho
2024-05-03 02:56:03 +01:00
parent 19a1f5e12d
commit 7f933addff
15 changed files with 314 additions and 6 deletions

View File

@ -0,0 +1,7 @@
export enum QueueName {
EMAIL_QUEUE = '{email-queue}',
}
export enum QueueJob {
SEND_EMAIL = 'send-email',
}