mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
chore: shorten ecosystem file
This commit is contained in:
parent
4b2cad407b
commit
992a045227
@ -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',
|
||||
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user