|
- module.exports = {
- apps : [{
- name: 'unit-stock',
- script: 'server.js',
-
- // Options reference: https://pm2.io/doc/en/runtime/reference/ecosystem-file/
- args: 'one two',
- instances: 2,
- autorestart: true,
- watch: false,
- max_memory_restart: '1G',
- env: {
- NODE_ENV: 'development',
- PORT: 14002
- },
- env_production: {
- NODE_ENV: 'production',
- PORT: 14002
- }
- }],
-
- 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'
- }
- }
- };
|