From 0b4a50e78a123cf482aef61ebebd416b6e7142ec Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Mon, 2 Jun 2025 13:03:32 +0900 Subject: [PATCH] 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. --- dev.ecosystem.comfig.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dev.ecosystem.comfig.js diff --git a/dev.ecosystem.comfig.js b/dev.ecosystem.comfig.js new file mode 100644 index 0000000..cf7d386 --- /dev/null +++ b/dev.ecosystem.comfig.js @@ -0,0 +1,10 @@ +module.exports = { + apps: [ + { + name: 'on-site-survey', + script: 'node_modules/next/dist/bin/next', + instances: 1, + exec_mode: 'fork', + }, + ], +}