Add PM2 ecosystem config

This commit is contained in:
otivm
2026-04-25 11:42:36 +00:00
parent 6725f11222
commit 1bc45d5b52

14
ecosystem.config.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: 'otivm',
script: 'serve',
args: 'dist -l 3000 -s',
cwd: '/home/otivm/OTIVM',
interpreter: 'none',
env: {
NODE_ENV: 'production',
},
},
],
}