diff --git a/scripts/helmcharts/local_deploy.sh b/scripts/helmcharts/local_deploy.sh index 1cfdde2f3..b75dab962 100644 --- a/scripts/helmcharts/local_deploy.sh +++ b/scripts/helmcharts/local_deploy.sh @@ -10,6 +10,7 @@ export IMAGE_TAG=`grep fromVersion vars.yaml | awk '{print $NF}'|xargs` apps=( + frontend api assets db @@ -40,6 +41,12 @@ restart(){ exit 1 } || { case "$1" in + frontend) + echo $IMAGE_TAG + cd ../../frontend + source build.sh $@ + restart frontend + ;; api) echo $IMAGE_TAG cd ../../api