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.
This commit is contained in:
yoosangwook 2025-06-02 13:03:32 +09:00
parent ca45c68b9d
commit 0b4a50e78a

10
dev.ecosystem.comfig.js Normal file
View File

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