explit/ecosystem.config.js

19 lines
310 B
JavaScript

module.exports = {
apps: [
{
name: "explit",
script: "npm",
args: "start",
autorestart: true,
watch: false,
max_memory_restart: "1G",
env: {
NODE_ENV: "production",
},
env_production: {
NODE_ENV: "production",
},
},
],
};