All checks were successful
Deploy to Production / deploy (push) Successful in 2m55s
25 lines
403 B
JavaScript
25 lines
403 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'aeroecho-backend',
|
|
cwd: './backend',
|
|
script: 'npm',
|
|
args: 'start',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3001
|
|
}
|
|
},
|
|
{
|
|
name: 'aeroecho-frontend',
|
|
cwd: './frontend',
|
|
script: 'npm',
|
|
args: 'start',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000
|
|
}
|
|
}
|
|
]
|
|
};
|