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

24
start_server.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
chcp 65001 >nul
title HM ITAM 서버
echo ============================================
echo HM ITAM 개발 서버 시작
echo ============================================
echo.
cd /d "%~dp0"
:: node_modules 존재 여부 확인
if not exist "node_modules" (
echo [INFO] node_modules가 없습니다. 패키지를 설치합니다...
echo.
call npm install
echo.
)
echo [INFO] 개발 서버를 시작합니다...
echo [INFO] 종료하려면 stop_server.bat을 실행하거나 이 창에서 Ctrl+C를 누르세요.
echo.
npm run dev