forked from CCI-MIT/XCoLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployAll.sh
More file actions
18 lines (18 loc) · 952 Bytes
/
deployAll.sh
File metadata and controls
18 lines (18 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set -e
SECONDS=0 ;
echo "#####################################################################################"
echo "Deploying clients"
echo "#####################################################################################"
sh deployClients.sh
echo "#####################################################################################"
echo "Deploying services"
echo "#####################################################################################"
sh deployServices.sh
echo "#####################################################################################"
echo "Deploying view"
echo "#####################################################################################"
sh deployView.sh
echo "#####################################################################################"
echo "Total deployment time in seconds : "
echo $SECONDS
echo "#####################################################################################"