123456789101112131415161718 |
- 'use strict';
- const app = '赛场-服务-v2';
- module.exports = {
- apps: [{
- name: app,
- script: './server.js',
- out: `./logs/${app}.log`,
- error: `./logs/${app}.err`,
- watch: [
- 'app', 'config',
- ],
- env: {
- NODE_ENV: 'production',
- },
- }],
- };
|