mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-12 03:20:02 -04:00
24 lines
495 B
JavaScript
24 lines
495 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'HolyUBLTS',
|
|
script: './backend.js',
|
|
env: {
|
|
PORT: 8080,
|
|
NODE_ENV: 'development',
|
|
},
|
|
env_production: {
|
|
PORT: 8080,
|
|
NODE_ENV: 'production',
|
|
},
|
|
instances: '1',
|
|
exec_interpreter: 'babel-node',
|
|
exec_mode: 'fork',
|
|
autorestart: true,
|
|
exp_backoff_restart_delay: 100,
|
|
cron_restart: '*/10 * * * *',
|
|
kill_timeout: 3000,
|
|
watch: false,
|
|
},
|
|
],
|
|
};
|