Skip to content

Commit

Permalink
feat(monitoring): add scheduler functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore03109 committed May 17, 2024
1 parent 071ff12 commit e84c100
Show file tree
Hide file tree
Showing 6 changed files with 340 additions and 2 deletions.
9 changes: 9 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
version: "3"
services:
redis:
image: redis
container_name: isomercms-redis
ports:
- 6379:6379
support:
build:
dockerfile: ./support/Dockerfile
ports:
- "8082:8082"
depends_on:
- postgres
- redis
env_file:
- .env
volumes:
Expand All @@ -18,6 +26,7 @@ services:
dockerfile: Dockerfile
depends_on:
- postgres
- redis
ports:
- "8081:8081"
env_file:
Expand Down
257 changes: 257 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.2",
"bullmq": "^5.7.8",
"cache-parser": "^1.2.4",
"cloudmersive-virus-api-client": "^1.2.7",
"connect-session-sequelize": "^7.1.5",
Expand Down
Loading

0 comments on commit e84c100

Please sign in to comment.