aeroEcho/ecosystem.config.js
roozbehk e4c5432f47
All checks were successful
Deploy to Production / deploy (push) Successful in 2m55s
test: trigger CI/CD
2025-10-06 21:37:46 +00:00

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
}
}
]
};