Files
Agente-Marketing/casa-hunter/iniciar.bat
T

26 lines
564 B
Batchfile

@echo off
echo ========================================
echo Casa Hunter FL - Iniciando...
echo ========================================
cd /d "%~dp0"
REM Crear entorno virtual si no existe
if not exist "venv" (
echo Creando entorno virtual...
python -m venv venv
)
REM Activar entorno e instalar dependencias
call venv\Scripts\activate.bat
pip install -q -r requirements.txt
REM Iniciar la app
echo.
echo Abriendo en tu navegador: http://localhost:5105
echo Presiona Ctrl+C para detener.
echo.
start "" "http://localhost:5105"
cd app
python main.py