Initial commit

This commit is contained in:
2026-04-13 14:17:43 +09:00
commit 6bca7beb8e
37 changed files with 4318 additions and 0 deletions

35
stop_server.bat Normal file
View File

@@ -0,0 +1,35 @@
@echo off
chcp 65001 >nul
title HM ITAM 서버 종료
echo ============================================
echo HM ITAM 개발 서버 종료
echo ============================================
echo.
:: Vite 개발 서버가 사용하는 node 프로세스 찾기
set "found=0"
for /f "tokens=2" %%a in ('netstat -ano ^| findstr ":5173" ^| findstr "LISTENING" 2^>nul') do (
set "found=1"
)
if "%found%"=="0" (
echo [INFO] 실행 중인 Vite 개발 서버를 찾을 수 없습니다.
echo.
pause
exit /b 0
)
echo [INFO] 포트 5173에서 실행 중인 서버를 종료합니다...
echo.
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":5173" ^| findstr "LISTENING"') do (
echo [INFO] PID %%a 프로세스를 종료합니다...
taskkill /PID %%a /F >nul 2>&1
)
echo.
echo [OK] 서버가 종료되었습니다.
echo.
pause