Node Pm2
PM2 is a daemon process manager that will help you manage and keep your application online 24/7
# 命令行启动程序
pm2 start .\flask-app.py --name flask-app --log .\log\flask-app.log --time --watch
–name application name
–log output log path
–time log with time
–watch watch and restart app when...
more...