18 lines
366 B
JavaScript
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 3001',
|
|
env: { NODE_ENV: 'production' },
|
|
},
|
|
],
|
|
};
|