From 2ed020bbcc5e07b0a9f6d1bad579b3f010329c1f Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Thu, 29 May 2025 14:48:11 +0900 Subject: [PATCH] Add local development ecosystem configuration for Next.js application. --- dev.local.ecosystem.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dev.local.ecosystem.config.js diff --git a/dev.local.ecosystem.config.js b/dev.local.ecosystem.config.js new file mode 100644 index 00000000..f508bdcc --- /dev/null +++ b/dev.local.ecosystem.config.js @@ -0,0 +1,13 @@ +module.exports = { + apps: [ + { + name: 'qcast-front-local-development', + script: 'node_modules/next/dist/bin/next', + instances: 1, + exec_mode: 'fork', + env: { + PORT: 5000, + }, + }, + ], +}