1234567891011121314151617181920 |
- module.exports = {
- apps: [
- {
- name: 'pacifica-strategy',
- script: 'node',
- args: ['--import', 'tsx', './scripts/run-modular-strategy.ts'],
- cwd: '/root/pacifica',
- instances: 1,
- autorestart: true,
- watch: false,
- max_memory_restart: '500M',
- env: {
- NODE_ENV: 'production'
- },
- out_file: '/root/pacifica/logs/pm2-out.log',
- err_file: '/root/pacifica/logs/pm2-err.log',
- log_date_format: 'YYYY-MM-DD HH:mm:ss'
- }
- ]
- };
|