- Introduced a new configuration file for managing the on-site survey application. - Defined application settings including script execution and instance management.
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'on-site-survey',
|
|
script: 'node_modules/next/dist/bin/next',
|
|
instances: 1,
|
|
exec_mode: 'fork',
|
|
},
|
|
],
|
|
}
|