mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'serve',
|
|
script: 'npx serve -- public',
|
|
instances: 1,
|
|
watch: false,
|
|
autorestart: true
|
|
},
|
|
{
|
|
name: 'grab',
|
|
script: `npm run grab -- --channels=channels.xml --output=public/guide.xml`,
|
|
cron_restart: process.env.CRON || null,
|
|
instances: 1,
|
|
watch: false,
|
|
autorestart: false
|
|
}
|
|
]
|
|
}
|