Spaces:
Build error
Build error
File size: 1,147 Bytes
09fa60b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
@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
|