Initial commit: Audio Dashboard Management System

Made-with: Cursor
This commit is contained in:
yangy
2026-03-04 18:17:34 +08:00
commit 75b1d16453
39 changed files with 3771 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
@echo off
echo Stopping Audio Dashboard API...
REM 查找占用 8002 端口的进程
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :8002') do (
set PID=%%a
goto :found
)
:found
if defined PID (
echo Found process PID: %PID%
taskkill /F /PID %PID%
echo Service stopped.
) else (
echo No service running on port 8002.
)
pause