通过脚本启动API + Angular Project

时间:2018-07-12 00:31:37

标签: node.js angular bash macos automation

app  tree -L        

|-- api                                                                                                                                                                                                                                                                                        
|-- web   

我正在考虑编写一个脚本来启动我的API并启动我的前端

我有

cd api &&
git checkout . &&
git checkout master &&
git pull &&
npm update &&
lsof -i ":3333" | grep node | awk '{print $2}' | while read pid; do kill -9 $pid; done
sh start.sh -p 3333 &&

# ------>> Code Stop Here 

cd ../web &&
git checkout . &&
git checkout master &&
git pull &&
npm update &&
lsof -i ":4202" | grep node | awk '{print $2}' | while read pid; do kill -9 $pid; done
npm start
python -mwebbrowser http://localhost:4202/login#/login

由于某些原因,它不起作用。

启动API后,它停止了它,不会进入下一行。

人们将如何实现这样的目标?

0 个答案:

没有答案