From baf890477bc34d3bf8e28a17a082105b2effd700 Mon Sep 17 00:00:00 2001 From: bluewarn Date: Thu, 26 Dec 2024 02:58:16 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=8F=AC=ED=8A=B8=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD,=20ecosystem=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecosystem.config.js | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..f52558e --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,12 @@ +module.exports = { + apps: [ + { + name: 'my-frame', + script: 'npm', + args: 'start', + env: { + NODE_ENV: 'production', + } + } + ] +}; diff --git a/package.json b/package.json index e1309fb..a2264d4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev -p 3001", + "dev": "next dev -p 3031", "build": "next build", "start": "next start -p 4040", "lint": "next lint"