加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ecosystem.config.js 671 Bytes
一键复制 编辑 原始数据 按行查看 历史
cyc 提交于 2020-11-17 15:15 . 代码初始化
module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps: [
{
name: 'fjtx-system',
script: 'main.js',
//watch: ['.nuxt', 'build'],
env: {
COMMON_VARIABLE: 'true'
},
env_production: {
NODE_ENV: 'production'
},
'instances': 2,
'exec_mode': 'cluster',
'error_file': 'err.log',
'out_file': 'out.log',
'merge_logs': true,
'log_date_format': 'YYYY-MM-DD HH:mm Z',
},
],
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化