代码拉取完成,页面将自动刷新
module.exports = {
apps: [
{
name: 'vite-nest-admin-api', // 项目名字,启动后的名字
script: './dist/main.js', // 执行的文件
cwd: './', // 根目录
args: '', // 传递给脚本的参数
watch: true, // 开启监听文件变动重启
// eslint-disable-next-line @typescript-eslint/camelcase
ignore_watch: ['node_modules', 'public', 'logs'], // 不用监听的文件
instances: '1', // max表示最大的 应用启动实例个数,仅在 cluster 模式有效 默认为 fork
autorestart: true, // 默认为 true, 发生异常的情况下自动重启
// eslint-disable-next-line @typescript-eslint/camelcase
max_memory_restart: '1G',
// eslint-disable-next-line @typescript-eslint/camelcase
error_file: './logs/app-err.log', // 错误日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
out_file: './logs/app-out.log', // 正常日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
merge_logs: true, // 设置追加日志而不是新建日志
// eslint-disable-next-line @typescript-eslint/camelcase
log_date_format: 'YYYY-MM-DD HH:mm:ss', // 指定日志文件的时间格式
// eslint-disable-next-line @typescript-eslint/camelcase
min_uptime: '60s', // 应用运行少于时间被认为是异常启动
// eslint-disable-next-line @typescript-eslint/camelcase
max_restarts: 30, // 最大异常重启次数
// eslint-disable-next-line @typescript-eslint/camelcase
restart_delay: 60, // 异常重启情况下,延时重启时间
env: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
},
env_development: {
NODE_ENV: 'development',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_production: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_test: {
// 环境参数,当前为测试环境
NODE_ENV: 'test',
},
},
],
deploy: {
production: {
user: 'root',
host: '39.108.99.86',
ref: 'origin/master',
repo: 'git@github.com:repo.git',
path: '/var/www/AnJiaMallServer',
'post-deploy':
'npm install && npm run build && pm2 reload ecosystem.config.js --env production',
},
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。