feat: Agente-Marketing initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user