Skip to content

Commit 3ed8cbd

Browse files
committed
Small edit to startMicroservices script.
1 parent 95af2e8 commit 3ed8cbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/microservices/scripts/startMicroservices.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
cd ../books
33
dir=$(pwd)
44
com="cd $dir && npm install && npm run start"
5-
echo $dir
5+
echo Starting 'books' microservice. A Mac Terminal App should be open and contains more information.
66
osascript -e "tell app \"Terminal\" to do script \"$com\""
77

88
cd ../customers
99
dir=`pwd`
1010
com="cd $dir && npm install && npm run start"
11-
echo $dir
11+
echo Starting 'customers' microservice. A Mac Terminal App should be open and contains more information.
1212
osascript -e "tell app \"Terminal\" to do script \"$com\""
1313

1414
cd ../orders
1515
dir=$(pwd)
1616
com="cd $dir && npm install && npm run start"
17-
echo $dir
17+
echo Starting 'orders' microservice. A Mac Terminal App should be open and contains more information.
1818
osascript -e "tell app \"Terminal\" to do script \"$com\""
1919

2020
cd ../reverse_proxy
2121
dir=$(pwd)
2222
com="cd $dir && npm install && npm run start"
23-
echo $dir
23+
echo Starting 'reverse_proxy' microservice. A Mac Terminal App should be open and contains more information.
2424
osascript -e "tell app \"Terminal\" to do script \"$com\""

0 commit comments

Comments
 (0)