Files
epg/pm2.config.js

20 lines
396 B
JavaScript
Raw Normal View History

2025-01-02 11:10:04 +03:00
module.exports = {
apps: [
{
name: 'serve',
2025-01-03 09:03:45 +03:00
script: 'npx serve -- public',
2025-01-02 11:10:04 +03:00
instances: 1,
watch: false,
autorestart: true
},
{
name: 'grab',
2025-01-05 15:07:42 +03:00
script: `npm run grab -- --channels=channels.xml --output=public/guide.xml`,
cron_restart: process.env.CRON || null,
2025-01-02 11:10:04 +03:00
instances: 1,
watch: false,
autorestart: false
}
]
}