feat: Agente-Marketing initial commit

This commit is contained in:
2026-07-03 12:23:34 -04:00
commit 293522436a
52 changed files with 13522 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
@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