Files
tasteby/ecosystem.config.js
joungmin a9dc1dad6a chore(dev): PM2 frontend PORT=3001 env + reviews/screenshots gitignore
- tasteby-web: PORT=3001 명시 (env 누락 → 기본 3000으로 충돌 위험)
- reviews/, screenshots/ 로컬 작업 산출물 무시

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-16 19:34:58 +09:00

33 lines
961 B
JavaScript

module.exports = {
apps: [
{
name: "tasteby-api",
cwd: "/Users/joungmin/workspaces/tasteby/backend-java",
script: "./start.sh",
interpreter: "/bin/bash",
},
// Python backend (disabled - kept for rollback)
// {
// name: "tasteby-api-python",
// cwd: "/Users/joungmin/workspaces/tasteby/backend",
// script: "run_api.py",
// interpreter: "/Users/joungmin/workspaces/tasteby/backend/.venv/bin/python",
// env: { PYTHONPATH: "." },
// },
// {
// name: "tasteby-daemon-python",
// cwd: "/Users/joungmin/workspaces/tasteby/backend",
// script: "run_daemon.py",
// interpreter: "/Users/joungmin/workspaces/tasteby/backend/.venv/bin/python",
// env: { PYTHONPATH: "." },
// },
{
name: "tasteby-web",
cwd: "/Users/joungmin/workspaces/tasteby/frontend",
script: "npm",
args: "run dev",
env: { PORT: 3001 },
},
],
};