ecosystem.config.js 366 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 module.exports = { apps: [ { name: 'drone-front', // package.json에 정의된 npm run start를 실행하게 해서 PM2로 관리하게 한다. script: 'yarn', args: 'run start', instances: '1', max_memory_restart: '1G', error_file: 'err.log', out_file: 'out.log', log_file: 'combined.log', }, ], };