diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..b7dcc42 --- /dev/null +++ b/ecosystem.config.js @@ -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', + }, + }, + ], +}