From a9dc1dad6ab824cc874dc27a02427ce3c46d7184 Mon Sep 17 00:00:00 2001 From: joungmin Date: Tue, 16 Jun 2026 19:34:58 +0900 Subject: [PATCH] chore(dev): PM2 frontend PORT=3001 env + reviews/screenshots gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - tasteby-web: PORT=3001 명시 (env 누락 → 기본 3000으로 충돌 위험) - reviews/, screenshots/ 로컬 작업 산출물 무시 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 --- .gitignore | 4 ++++ ecosystem.config.js | 1 + 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 38331ee..ac4d248 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,7 @@ k8s/secrets.yaml backend/cookies.txt backend-java/cookies.txt **/cookies.txt + +# 작업 산출물 (로컬 전용) +reviews/ +screenshots/ diff --git a/ecosystem.config.js b/ecosystem.config.js index bce7433..f591f05 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -26,6 +26,7 @@ module.exports = { cwd: "/Users/joungmin/workspaces/tasteby/frontend", script: "npm", args: "run dev", + env: { PORT: 3001 }, }, ], };