PRIMEIRO ENVIO

This commit is contained in:
2025-12-25 12:02:07 -03:00
parent ca49575224
commit c4d3bd9a86
92 changed files with 26976 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
@echo off
echo 🚀 Iniciando CloneWeb Platform...
echo.
echo 📡 Iniciando Crawler Service (porta 3001)...
start "Crawler Service" cmd /k "cd simple-crawler && npm start"
timeout /t 3 /nobreak >nul
echo 🌐 Iniciando Web Interface (porta 4000)...
start "Web Interface" cmd /k "cd web-interface && npm start"
timeout /t 2 /nobreak >nul
echo.
echo ✅ Serviços iniciados!
echo 🌐 Interface Web: http://localhost:4000
echo 📡 Crawler API: http://localhost:3001
echo.
echo Pressione qualquer tecla para abrir a interface no navegador...
pause >nul
start http://localhost:4000