Files
hope-events/ecosystem.config.js
T

18 lines
366 B
JavaScript

module.exports = {
apps: [
{
name: 'hope-events-backend',
cwd: __dirname + '/backend',
script: 'src/index.js',
env: { NODE_ENV: 'production' },
},
{
name: 'hope-events-frontend',
cwd: __dirname + '/frontend',
script: 'npm',
args: 'start -- -p 3000',
env: { NODE_ENV: 'production' },
},
],
};