Files
otivm/ecosystem.config.cjs
2026-04-25 15:10:55 +00:00

15 lines
245 B
JavaScript

module.exports = {
apps: [
{
name: 'otivm',
script: '/usr/bin/node',
args: 'server/index.js',
cwd: '/home/otivm/OTIVM',
interpreter: 'none',
env: {
NODE_ENV: 'production',
},
},
],
}