https://github.com/taskforcesh/bullmq-webhooks
Demo code for the Webhooks tutorial
https://github.com/taskforcesh/bullmq-webhooks
Last synced: about 2 months ago
JSON representation
Demo code for the Webhooks tutorial
- Host: GitHub
- URL: https://github.com/taskforcesh/bullmq-webhooks
- Owner: taskforcesh
- License: mit
- Created: 2021-03-26T14:19:04.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-26T14:25:49.000Z (about 4 years ago)
- Last Synced: 2025-04-07T18:06:37.303Z (3 months ago)
- Language: TypeScript
- Size: 20.5 KB
- Stars: 31
- Watchers: 2
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BullMQ Tutorial - Webhooks
This repo includes the code for the Webhooks tutorial ().
# Install
Just clone this repo and when inside the repo install the dependencies:
```
yarn
```In order to test this code you need to run 3 different services, a main server
that accepts posting tasks, a client server that will be called by the webhook worker,
and a service to start the workers.Main service:
```
yarn start
```Client test server:
```
yarn start:test
```Workers:
```
yarn start:workers
```