Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nampereira committed Apr 22, 2024
1 parent c0f87c4 commit fba510b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion init.env
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ DJANGO_SUPERUSER_EMAIL=admin@example.com
STORE_ADMIN_USERNAME=admin

# slack token used to post develop messages (leave undefined if not using)
#SLACK_DEV_CHANNEL_WEBHOOK=slack-token-to-post-messages
#SLACK_DEV_CHANNEL_WEBHOOK=slack-token-to-post-messages
5 changes: 4 additions & 1 deletion preprod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ docker-compose -f docker-compose.yaml -f docker-compose.prod.yaml --env-file VER

docker-compose -f docker-compose.yaml -f docker-compose.prod.yaml --env-file VERSION.preprod $@

./update-custom-website.sh
if [[ "$*" == *up* ]]
then
./update-custom-website.sh
fi
5 changes: 4 additions & 1 deletion prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ docker-compose -f docker-compose.yaml -f docker-compose.prod.yaml --env-file VER

docker-compose -f docker-compose.yaml -f docker-compose.prod.yaml --env-file VERSION $@

./update-custom-website.sh
if [[ "$*" == *up* ]]
then
./update-custom-website.sh
fi
7 changes: 5 additions & 2 deletions staging.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ then
docker volume rm arena-services-docker_account-static-content
fi

docker-compose -f -f docker-compose.yaml -f docker-compose.staging.yaml --env-file VERSION pull -q
docker-compose -f docker-compose.yaml -f docker-compose.staging.yaml --env-file VERSION pull -q

docker-compose -f docker-compose.yaml -f docker-compose.staging.yaml --env-file VERSION $@

./update-custom-website.sh
if [[ "$*" == *up* ]]
then
./update-custom-website.sh
fi

0 comments on commit fba510b

Please sign in to comment.