Skip to content

Commit

Permalink
chore: shorten ecosystem file
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed Jun 12, 2018
1 parent 4b2cad4 commit 992a045
Showing 1 changed file with 8 additions and 37 deletions.
45 changes: 8 additions & 37 deletions lib/templates/ecosystem.tpl
Original file line number Diff line number Diff line change
@@ -1,33 +1,15 @@
module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
// First application
{
name : 'API',
script : 'app.js',
env: {
COMMON_VARIABLE: 'true'
},
env_production : {
NODE_ENV: 'production'
}
apps : [{
name : 'API',
script : 'app.js',
env: {
NODE_ENV: 'development'
},

// Second application
{
name : 'WEB',
script : 'web.js'
env_production : {
NODE_ENV: 'production'
}
],
}],

/**
* Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/
*/
deploy : {
production : {
user : 'node',
Expand All @@ -36,17 +18,6 @@ module.exports = {
repo : 'git@github.com:repo.git',
path : '/var/www/production',
'post-deploy' : 'npm install && pm2 reload ecosystem.config.js --env production'
},
dev : {
user : 'node',
host : '212.83.163.1',
ref : 'origin/master',
repo : 'git@github.com:repo.git',
path : '/var/www/development',
'post-deploy' : 'npm install && pm2 reload ecosystem.config.js --env dev',
env : {
NODE_ENV: 'dev'
}
}
}
};

0 comments on commit 992a045

Please sign in to comment.