diff --git a/ecosystem.config.js b/ecosystem.config.cjs similarity index 100% rename from ecosystem.config.js rename to ecosystem.config.cjs diff --git a/ecosystem.simple.cjs b/ecosystem.simple.cjs new file mode 100644 index 0000000..47b7663 --- /dev/null +++ b/ecosystem.simple.cjs @@ -0,0 +1,15 @@ +module.exports = { + apps: [{ + name: 'harheimertc', + script: 'npm', + args: 'run start', + instances: 1, + autorestart: true, + watch: false, + max_memory_restart: '1G', + env: { + NODE_ENV: 'production', + PORT: 3100 + } + }] +}