feat: Add development server startup script for UR environment

- Introduces a new `start:ur` script in `package.json` to launch the Next.js application on port 5050 for the UR environment.
This commit is contained in:
sangwook yoo 2026-05-28 17:35:28 +09:00
parent 7fe1cca02a
commit f91b953ef5

View File

@ -14,6 +14,7 @@
"start:cluster1": "env-cmd -f .env.production next start -p 5000", "start:cluster1": "env-cmd -f .env.production next start -p 5000",
"start:cluster2": "env-cmd -f .env.production next start -p 5001", "start:cluster2": "env-cmd -f .env.production next start -p 5001",
"start:dev": "env-cmd -f .env.development next start -p 5010", "start:dev": "env-cmd -f .env.development next start -p 5010",
"start:ur": "env-cmd -f .env.development next start -p 5050",
"start:btob": "env-cmd -f .env.development next start -p 5060", "start:btob": "env-cmd -f .env.development next start -p 5060",
"lint": "next lint", "lint": "next lint",
"serve": "node server.js" "serve": "node server.js"