mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
24 lines
481 B
Smarty
24 lines
481 B
Smarty
module.exports = {
|
|
apps : [{
|
|
name : 'API',
|
|
script : 'app.js',
|
|
env: {
|
|
NODE_ENV: 'development'
|
|
},
|
|
env_production : {
|
|
NODE_ENV: 'production'
|
|
}
|
|
}],
|
|
|
|
deploy : {
|
|
production : {
|
|
user : 'node',
|
|
host : '212.83.163.1',
|
|
ref : 'origin/master',
|
|
repo : 'git@github.com:repo.git',
|
|
path : '/var/www/production',
|
|
'post-deploy' : 'npm install && pm2 reload ecosystem.config.js --env production'
|
|
}
|
|
}
|
|
};
|