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 21, 2024
1 parent 9df257d commit c480925
Show file tree
Hide file tree
Showing 9 changed files with 358 additions and 2 deletions.
1 change: 1 addition & 0 deletions .aws/deploy/backend-task-definition.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"name": "REDIRECT_URI",
"valueFrom": "PROD_REDIRECT_URI"
},
{ "name": "REDIS_HOST", "valueFrom": "PROD_REDIS_HOST" },
{
"name": "SESSION_SECRET",
"valueFrom": "PROD_SESSION_SECRET"
Expand Down
1 change: 1 addition & 0 deletions .aws/deploy/backend-task-definition.staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
"name": "REDIRECT_URI",
"valueFrom": "STAGING_REDIRECT_URI"
},
{ "name": "REDIS_HOST", "valueFrom": "STAGING_REDIS_HOST" },
{
"name": "SESSION_SECRET",
"valueFrom": "STAGING_SESSION_SECRET"
Expand Down
1 change: 1 addition & 0 deletions .aws/deploy/support-task-definition.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
"name": "REDIRECT_URI",
"valueFrom": "PROD_REDIRECT_URI"
},
{ "name": "REDIS_HOST", "valueFrom": "PROD_REDIS_HOST" },
{
"name": "SESSION_SECRET",
"valueFrom": "PROD_SESSION_SECRET"
Expand Down
1 change: 1 addition & 0 deletions .aws/deploy/support-task-definition.staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
"name": "REDIRECT_URI",
"valueFrom": "STAGING_REDIRECT_URI"
},
{ "name": "REDIS_HOST", "valueFrom": "STAGING_REDIS_HOST" },
{
"name": "SESSION_SECRET",
"valueFrom": "STAGING_SESSION_SECRET"
Expand Down
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
Loading

0 comments on commit c480925

Please sign in to comment.