15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'on-site-survey',
|
|
script: 'node_modules/next/dist/bin/next',
|
|
instances: 2,
|
|
exec_mode: 'cluster',
|
|
env_file: '.env.production',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
},
|
|
},
|
|
],
|
|
}
|