Skip to content

Instantly share code, notes, and snippets.

@daliborgogic
Created August 20, 2019 10:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daliborgogic/9ad509714dadb4c31f3ca3b6a034e2bc to your computer and use it in GitHub Desktop.
Save daliborgogic/9ad509714dadb4c31f3ca3b6a034e2bc to your computer and use it in GitHub Desktop.
module.exports = {
apps : [{
name: 'API',
script: 'app.js',
// Options reference: https://pm2.io/doc/en/runtime/reference/ecosystem-file/
args: 'one two',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
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'
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment