Initial commit: SYNC_API project

This commit is contained in:
2025-11-06 09:50:10 -07:00
commit 733ef04eeb
42 changed files with 2380 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@echo off
echo ==============================================
echo API FASTAPI - SERVIDOR PRODUCCION
echo ==============================================
echo.
echo Iniciando servidor en modo produccion...
echo URL: http://cpanel-a24.aduanasoft.com:8000
echo Docs: http://cpanel-a24.aduanasoft.com:8000/docs
echo.
REM Configurar variables para producción
set API_HOST=0.0.0.0
set API_PORT=8000
set DEBUG_MODE=False
set LOG_LEVEL=INFO
REM Ejecutar con configuración de producción
python -m uvicorn main:app --host 0.0.0.0 --port 8000 --workers 4
pause