Skip to content

Commit 1d74483

Browse files
committed
Changed a folder name from 'reverse proxy' to 'reverse_proxy'.
Added a script to build the Microservices example for macOS.
1 parent ecb8db1 commit 1d74483

File tree

7 files changed

+23
-0
lines changed

7 files changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
cd ../books
3+
dir=$(pwd)
4+
com="cd $dir && npm run start"
5+
echo $dir
6+
osascript -e "tell app \"Terminal\" to do script \"$com\""
7+
cd ../customers
8+
dir=`pwd`
9+
com="cd $dir && npm run start"
10+
echo $dir
11+
osascript -e "tell app \"Terminal\" to do script \"$com\""
12+
13+
cd ../orders
14+
dir=$(pwd)
15+
com="cd $dir && npm run start"
16+
echo $dir
17+
osascript -e "tell app \"Terminal\" to do script \"$com\""
18+
19+
cd ../reverse_proxy
20+
dir=$(pwd)
21+
com="cd $dir && npm run start"
22+
echo $dir
23+
osascript -e "tell app \"Terminal\" to do script \"$com\""

0 commit comments

Comments
 (0)