Added redis and worker services

This commit is contained in:
blaisadmin
2026-05-02 00:14:56 -04:00
parent 5a3ca9021a
commit 673df353b9
15 changed files with 833 additions and 15 deletions
+4 -1
View File
@@ -5,12 +5,15 @@
"type": "module",
"scripts": {
"dev": "tsx watch src/app.ts",
"worker:dev": "tsx watch src/worker.ts",
"build": "tsc",
"test": "tsx --test src/**/*.test.ts",
"start": "node dist/app.js"
"start": "node dist/app.js",
"worker": "node dist/worker.js"
},
"dependencies": {
"@types/nodemailer": "^8.0.0",
"bullmq": "^5.76.4",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.21.2",