Files
WebWork/scripts/start.bat
祀梦 001e496d16 refactor(frontend): 移除未使用的CSS和HTML文件
清理前端项目中未使用的CSS样式文件和HTML模板文件,包括notification.css、main.css、style.css和auth/index.html
2025-12-23 21:12:24 +08:00

12 lines
249 B
Batchfile

@echo off
cd /d %~dp0
cd ..\backend
echo Checking port 3000...
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :3000 ^| findstr LISTENING') do (
taskkill /F /PID %%a
)
echo Starting Backend Server...
:: start http://localhost:3000
npm start