我试图从app
文件中启动app.json
:
{
"apps": [{
"name": "app",
"cwd": "/Users/xxx/Sites/Projects/api/",
"script": "bin/www",
"instances": 1,
"exec_mode": "fork",
"env": {
"NODE_ENV": "dev",
"PORT": "3000"
},
"env_production" : {
"NODE_ENV": "production",
"PORT": "3000"
},
"log_file": "access.log",
"error_file": "error.log",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"watch": "true",
"ignore_watch": [""]
}]
}
当我使用JSON启动我的应用时会出现问题。
pm2 start applist.json
[PM2][WARN] Applications app not running, starting...
如果我在没有JSON的情况下启动应用程序,它就像一个魅力。
pm2 start bin/www --watch
对此有何帮助?