-
Notifications
You must be signed in to change notification settings - Fork 164
/
ecosystem.config.js
38 lines (38 loc) · 1.58 KB
/
ecosystem.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* eslint-disable @typescript-eslint/camelcase */
module.exports = {
apps: [
{
name: 'nestjs-mysql-api', // 项目名字,启动后的名字
script: './dist/main.js', // 执行的文件
cwd: './', // 根目录
args: '', // 传递给脚本的参数
watch: true, // 开启监听文件变动重启
ignore_watch: ['node_modules', 'public', 'logs'], // 不用监听的文件
exec_mode: 'cluster_mode',
instances: '2', // max表示最大的 应用启动实例个数,仅在 cluster 模式有效 默认为 fork
autorestart: true, // 默认为 true, 发生异常的情况下自动重启
max_memory_restart: '1G',
error_file: './logs/app-err.log', // 错误日志文件
out_file: './logs/app-out.log', // 正常日志文件
merge_logs: true, // 设置追加日志而不是新建日志
log_date_format: 'YYYY-MM-DD HH:mm:ss', // 指定日志文件的时间格式
min_uptime: '60s', // 应用运行少于时间被认为是异常启动
max_restarts: 30, // 最大异常重启次数
restart_delay: 60, // 异常重启情况下,延时重启时间
node_args: '--require dotenv/config',
env: {
// 环境参数,当前指定为开发环境
NODE_ENV: 'development',
DOTENV_CONFIG_PATH: '.env.development',
},
env_production: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
},
env_test: {
// 环境参数,当前为测试环境
NODE_ENV: 'test',
},
},
],
};