AudioForge / scripts /check_status.bat
OnyxlMunkey's picture
c618549
@echo off
REM Quick status checker for AudioForge
echo.
echo ========================================
echo AudioForge Status Check
echo ========================================
echo.
echo Checking Docker containers...
docker-compose ps
echo.
echo Checking if services are responding...
echo.
echo [Backend] Testing http://localhost:8000/health
curl -s http://localhost:8000/health >nul 2>&1
if %errorlevel% equ 0 (
echo [OK] Backend is responding!
) else (
echo [WAIT] Backend not ready yet...
)
echo.
echo [Frontend] Testing http://localhost:3000
curl -s http://localhost:3000 >nul 2>&1
if %errorlevel% equ 0 (
echo [OK] Frontend is responding!
) else (
echo [WAIT] Frontend not ready yet...
)
echo.
echo ========================================
echo Quick Actions:
echo ========================================
echo.
echo View logs: docker-compose logs -f
echo Stop all: docker-compose down
echo Restart: docker-compose restart
echo Open frontend: start http://localhost:3000
echo Open API docs: start http://localhost:8000/docs
echo.
pause