@echo off
chcp 65001 >nul
title WhatsApp CRM Services
cd /d "%~dp0"

echo Starting WhatsApp CRM Services...
echo.

echo [1] Queue Worker
start "Queue Worker" /min C:\php82\php.exe artisan queue:work --queue=webhooks,default --sleep=3 --tries=3 --timeout=60

echo [2] Reverb (WebSocket)
start "Reverb" /min C:\php82\php.exe artisan reverb:start --port=8080 --host=0.0.0.0

echo [3] Dev Server (if not already running)
start "Dev Server" /min C:\php82\php.exe artisan serve --host=127.0.0.1 --port=8000

echo.
echo All services started in minimized windows.
echo Close any of these windows to stop the corresponding service.
timeout /t 5 /nobreak >nul
