Primer commit

This commit is contained in:
2026-05-30 14:31:19 -06:00
commit a35d26fac0
277 changed files with 265240 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
@echo off
title MP Manager Stopper
echo ===================================================
echo MP Manager - Deteniendo Servidor Monte Providencia
echo ===================================================
echo.
cd /d "%~dp0"
:: Delegamos toda la logica a runtime_control.py para garantizar que solo se
:: matan procesos MP Manager (nunca el Transcriptor u otro proyecto Python
:: que pueda estar escuchando en 8000).
::
:: Flags:
:: --force tambien apaga instancias huerfanas sin server_info.json
:: siempre que la linea de comando confirme que son MP Manager.
python runtime_control.py stop %*
set "RC=%errorlevel%"
echo.
timeout /t 3 >nul
exit /b %RC%