feat: 서버 시작/중지 스크립트 추가

- scripts/start_server.ps1: 기존 프로세스 종료 후 시작
- scripts/stop_server.ps1: 서버 중지
- scripts/*.bat: 더블클릭 실행용
This commit is contained in:
thug0bin
2026-02-27 14:55:46 +09:00
parent 6e23dc8b20
commit c4ab865c93
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
@echo off
chcp 65001 >nul
powershell -ExecutionPolicy Bypass -File "%~dp0stop_server.ps1"
pause