Created
August 20, 2019 10:31
-
-
Save daliborgogic/9ad509714dadb4c31f3ca3b6a034e2bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 : '[email protected]: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