-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: Update dev version to 5.2.20 and docker images
This commit includes an update to the development version number from 5.2.19 to 5.2.20 in several configuration files. Moreover, it involves the changes to the docker-compose.yml file to use a new image from Amazon Elastic Container Registry.
- Loading branch information
1 parent
adbae38
commit 2bcc83b
Showing
4 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"IS_PROD": false, | ||
"IS_CANARY": false, | ||
"BUILD_VERSION": "5.2.19", | ||
"BUILD_VERSION": "5.2.20", | ||
"BUILD_VERSION_NOTES": "Jan 31, 2024: Campaigns initial prod deployment\n" | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
5.2.19 | ||
5.2.20 |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"dev": "5.2.19", | ||
"dev": "5.2.20", | ||
"prod": "5.1.10", | ||
"canary": "5.2.18" | ||
} |
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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
version: '3.8' | ||
|
||
services: | ||
app: | ||
build: . | ||
command: sh -c "python manage.py runserver 0.0.0.0:8000" | ||
container_name: app | ||
ports: | ||
- "80:8000" # for deployed version | ||
- "8000:8000" # for local testing | ||
|
||
image: massenergize/api | ||
- "8000:8000" # for localhost testing | ||
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev | ||
restart: on-failure | ||
|
||
|
||
celery_worker: | ||
command: sh -c "celery -A _main_.celery.app worker -l info" | ||
depends_on: | ||
- app | ||
hostname: celery_worker | ||
image: massenergize/api | ||
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev | ||
restart: on-failure | ||
|
||
|
||
celery_beat: | ||
command: sh -c "celery -A _main_.celery.app beat -l info" | ||
depends_on: | ||
- app | ||
hostname: celery_beat | ||
image: massenergize/api | ||
image: 202758212688.dkr.ecr.us-east-2.amazonaws.com/massenergize/api-dev | ||
restart: on-failure |