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

24
sync_api/docker-build.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
echo ==========================================
echo CONSTRUYENDO CONTENEDOR DOCKER
echo ==========================================
echo.
REM Construir imagen Docker
echo Construyendo imagen Docker...
docker build -t aduanasoft-sync-api:latest .
if %ERRORLEVEL% EQU 0 (
echo.
echo ✅ Imagen construida exitosamente
echo.
echo Para ejecutar el contenedor, usa:
echo docker-compose up -d
echo.
echo O para ejecutar directamente:
echo docker run -d -p 9443:9443 --name sync-api aduanasoft-sync-api:latest
) else (
echo ❌ Error al construir la imagen
)
pause