Files
smanab/e-proposal-komite/ecosystem.config.js

30 lines
735 B
JavaScript

module.exports = {
apps: [
{
name: 'e-proposal-komite-api',
cwd: './server',
script: 'src/index.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
NODE_ENV: 'production'
}
},
{
name: 'e-proposal-komite-web',
cwd: './',
script: 'server.js',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '200M',
env: {
NODE_ENV: 'production',
PORT: 3008
}
}
]
};