Files
hq_TES/ecosystem.config.js
2018-09-03 17:51:43 +00:00

24 lines
487 B
JavaScript

module.exports = {
apps : [{
name : 'TES',
script : 'bin/www',
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:MrARM/TES.git',
path : '/var/www/production',
'post-deploy' : 'npm install && pm2 reload ecosystem.config.js --env production'
}
}
};