Skip to content

Commit

Permalink
Update development version to 5.2.15 and modify docker configuration
Browse files Browse the repository at this point in the history
Bumped up the development version to 5.2.15 across build.json, api_version_dev.txt, and deployConfig.json. The docker-compose.yml file has also been modified to use the development configuration, moving away from the canary configuration.
  • Loading branch information
abdullai-t committed May 3, 2024
1 parent 8eb09d9 commit b0460af
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/_main_/config/build/deployConfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"IS_PROD": false,
"IS_CANARY": false,
"BUILD_VERSION": "5.2.14",
"BUILD_VERSION": "5.2.15",
"BUILD_VERSION_NOTES": "Jan 31, 2024: Campaigns initial prod deployment\n"
}
2 changes: 1 addition & 1 deletion src/api_version_dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.14
5.2.15
2 changes: 1 addition & 1 deletion src/deployment/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dev": "5.2.14",
"dev": "5.2.15",
"prod": "5.1.10",
"canary": "5.2.13"
}
13 changes: 3 additions & 10 deletions src/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,21 @@ services:
ports:
- "80:8000" # for deployed version
- "8000:8000" # for localhost testing
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-canary
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev
restart: on-failure
env_file:
- canary.env

celery_worker:
command: sh -c "celery -A _main_.celery.app worker -l info"
depends_on:
- app
hostname: celery_worker
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-canary
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev
restart: on-failure
env_file:
- canary.env


celery_beat:
command: sh -c "celery -A _main_.celery.app beat -l info"
depends_on:
- app
hostname: celery_beat
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-canary
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev
restart: on-failure
env_file:
- canary.env

0 comments on commit b0460af

Please sign in to comment.