Initial commit - dashboard leads

This commit is contained in:
Panchito
2026-08-18 11:48:08 -05:00
commit e90dae89b6
5148 changed files with 714437 additions and 0 deletions

21
_run_tiempos.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
REM Ventana que muestra EN VIVO los tiempos de carga del backend de LEADS.
REM Lee el archivo backend\carga_tiempos.log que el backend va escribiendo.
title LEADS - TIEMPOS DE CARGA
cd /d "%~dp0backend"
echo ============================================================
echo LEADS - TIEMPOS DE CARGA (en vivo)
echo Esperando que el backend empiece a cargar...
echo ============================================================
echo.
REM Espera a que exista el log (el backend lo crea al arrancar la precarga)
:esperar
if not exist "carga_tiempos.log" (
timeout /t 1 >nul
goto esperar
)
REM Muestra el log en vivo (se actualiza solo conforme el backend carga)
powershell -NoProfile -Command "Get-Content -Path 'carga_tiempos.log' -Wait -Encoding UTF8"
pause