mirror of
https://gitee.com/ShopeX/ECShopX_desktop-frontend
synced 2026-08-08 10:25:31 +08:00
32 lines
748 B
JavaScript
32 lines
748 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'aigle-bbc',
|
|
script: './node_modules/nuxt/bin/nuxt.js',
|
|
args: 'start',
|
|
|
|
// Options reference: https://pm2.io/doc/en/runtime/reference/ecosystem-file/
|
|
instances: 2,
|
|
exec_mode: 'cluster',
|
|
// 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'
|
|
// }
|
|
// }
|
|
}
|