Files
eene_dashboard/서버종료.bat
EENE Dashboard 22366dde72 Initial commit - EENE Dashboard
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-29 18:07:10 +09:00

19 lines
441 B
Batchfile

@echo off
chcp 65001 > nul
title EENE Dashboard Stop
echo ================================
echo EENE Dashboard - Server Stop
echo ================================
echo.
echo [1/1] Stopping Frontend / Backend...
taskkill /fi "WindowTitle eq EENE-Backend*" /f > nul 2>&1
taskkill /fi "WindowTitle eq EENE-Frontend*" /f > nul 2>&1
echo Done.
echo.
echo All servers stopped.
echo (PostgreSQL keeps running as Windows service)
pause