explit/ecosystem.config.js

22 lines
371 B
JavaScript
Raw Normal View History

2022-02-10 10:53:12 +01:00
module.exports = {
apps: [
{
name: "explit",
script: "npm",
args: "start",
2022-02-21 16:20:33 +01:00
user: "plone",
2022-02-10 10:53:12 +01:00
autorestart: true,
watch: false,
max_memory_restart: "1G",
env: {
NODE_ENV: "production",
2022-02-21 16:08:47 +01:00
PORT: 5001,
2022-02-10 10:53:12 +01:00
},
env_production: {
NODE_ENV: "production",
2022-02-21 16:08:47 +01:00
PORT: 5001,
2022-02-10 10:53:12 +01:00
},
},
],
};