ishingiro / tests /start_aimhsa.bat
IZERE HIRWA Roger
l
923dca5
@echo off
echo ================================================
echo AIMHSA - AI Mental Health Support Assistant
echo ================================================
echo.
echo Starting AIMHSA system...
echo Backend API: https://prodevroger-ishingiro.hf.space
echo Frontend: https://prodevroger-ishingiro.hf.space
echo.
echo Press Ctrl+C to stop both services
echo.
REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python and try again
pause
exit /b 1
)
REM Run the unified launcher
python run_aimhsa.py
pause