assembly/ecosystem.config.js

22 lines
396 B
JavaScript
Raw Normal View History

2021-08-19 09:59:48 +00:00
module.exports = {
apps: [
{
name: 'assembly',
exec_mode: 'cluster',
instances: 'max',
script: './node_modules/nuxt/bin/nuxt.js',
args: 'start',
env: {
NODE_ENV: 'production',
HOST: 'localhost',
PORT: 4000,
},
env_production: {
NODE_ENV: 'production',
PORT: '4000',
HOST: 'localhost'
},
},
],
}