From 2021250fb51e31ce6e96c1dda4f002d3b700d319 Mon Sep 17 00:00:00 2001 From: Herberto Graca Date: Fri, 15 Jun 2018 11:53:27 +0200 Subject: [PATCH] Prefix the heroku app with the name of the `vendor-project` To prevent clashes with other heroku apps names --- bin/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/deploy b/bin/deploy index 59367a8b..80b8e396 100755 --- a/bin/deploy +++ b/bin/deploy @@ -13,7 +13,7 @@ if [ "$#" == '0' ] || [ "$#" -gt "2" ] || [ "$1" == "--help" ] || [ "$1" == "-h fi STAGE=${1} # 'staging'|'production' -APP_NAME=${2} # ${SCRUTINIZER_BRANCH} +APP_NAME="acme-app-${2}" # acme-app-${SCRUTINIZER_BRANCH} PIPELINE='ppln-explicit-arch-php-sfn' PRODUCTION_IMAGE='hgraca/explicit-architecture:app.sfn.prd'