move AI flyer processing to background BullMQ jobs using redis for storage
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 4m22s

This commit is contained in:
2025-12-02 17:37:45 -08:00
parent d028511d38
commit 4359eb50be
2 changed files with 8 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
// server.ts
import express, { Request, Response, NextFunction } from 'express';
// Load environment variables from .env file at the very beginning.
import dotenv from 'dotenv';
dotenv.config();
import timeout from 'connect-timeout';
import cookieParser from 'cookie-parser';
import listEndpoints from 'express-list-endpoints';