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 6m21s

This commit is contained in:
2025-12-02 14:31:01 -08:00
parent a8f650d513
commit 80e2222d20
18 changed files with 1244 additions and 200 deletions

View File

@@ -68,7 +68,11 @@ jobs:
# It stops the currently running pm2 process, freeing up port 3001 so that the
# integration test suite can launch its own, fresh server instance.
# '|| true' ensures the workflow doesn't fail if the process isn't running.
run: pm2 stop flyer-crawler-api || true
run: |
pm2 stop flyer-crawler-api || true
pm2 stop flyer-crawler-worker || true
pm2 delete flyer-crawler-api || true
pm2 delete flyer-crawler-worker || true
- name: Run All Tests and Generate Merged Coverage Report
# This single step runs both unit and integration tests, then merges their