dev #930

Merged
ysCha merged 95 commits from dev into dev-deploy 2026-06-23 18:00:25 +09:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 74c980adaf - Show all commits

View File

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

2
startscript-ur.js Normal file
View File

@ -0,0 +1,2 @@
var exec = require('child_process').exec
exec('yarn start:ur', { windowsHide: true })