mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 02:47:02 -05:00
20 lines
396 B
JavaScript
20 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
|
|
}
|
|
]
|
|
}
|