-
-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(WIP) Adding Job Scheduler support for BullMQ Queues
- Loading branch information
lpoulin
committed
Nov 27, 2024
1 parent
4917821
commit 4d862b0
Showing
36 changed files
with
27,015 additions
and
1,404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"version": "0.2.0", | ||
"compounds": [ | ||
{ | ||
"name": "Debug", | ||
"configurations": ["Debug API", "Debug UI"] | ||
} | ||
], | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug API", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/example.ts", | ||
"runtimeExecutable": "yarn", | ||
"runtimeArgs": ["start:dev:server"], | ||
"outFiles": ["${workspaceFolder}/**/*.js"], | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug UI", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "yarn", | ||
"runtimeArgs": ["lerna", "run", "--stream", "--scope", "@bull-board/ui", "dev"], | ||
"outFiles": ["${workspaceFolder}/packages/ui/dist/**/*.js"], | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.