-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: webhooks implementation & queue system
- Loading branch information
Showing
30 changed files
with
1,300 additions
and
751 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,22 @@ | ||
version: '3.8' | ||
services: | ||
redis: | ||
image: redis:alpine | ||
ports: | ||
- '${REDIS_PORT}:6379' | ||
volumes: | ||
- redis-data:/data | ||
command: > | ||
--requirepass ${REDIS_PASSWORD} | ||
--appendonly yes | ||
environment: | ||
- REDIS_PASSWORD=${REDIS_PASSWORD} | ||
- REDIS_PORT=${REDIS_PORT} | ||
networks: | ||
- app-network | ||
volumes: | ||
redis-data: | ||
driver: local | ||
networks: | ||
app-network: | ||
driver: bridge |
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
Submodule data-migrations
updated
from 76e65b to 8947f1
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
23 changes: 0 additions & 23 deletions
23
services/workflows-service/src/alert/webhook-manager/types.ts
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
services/workflows-service/src/alert/webhook-manager/webhook-event-emitter.service.ts
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
services/workflows-service/src/alert/webhook-manager/webhook-http.service.ts
This file was deleted.
Oops, something went wrong.
73 changes: 0 additions & 73 deletions
73
services/workflows-service/src/alert/webhook-manager/webhook-manager.service.ts
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
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
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.