onsitesurvey/dev.ecosystem.comfig.js
yoosangwook 0b4a50e78a chore: add ecosystem configuration for on-site survey application
- Introduced a new configuration file for managing the on-site survey application.
- Defined application settings including script execution and instance management.
2025-06-02 13:03:32 +09:00

11 lines
173 B
JavaScript

module.exports = {
apps: [
{
name: 'on-site-survey',
script: 'node_modules/next/dist/bin/next',
instances: 1,
exec_mode: 'fork',
},
],
}