healthapp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
608 B

@echo off
echo ========================================
echo Health AI - APP Launcher
echo ========================================
echo.
echo [1] Web Preview (Browser)
echo [2] Device (Expo Go)
echo [3] Exit
echo.
echo ----------------------------------------
echo Test Account: 13800138000 / 123456
echo ----------------------------------------
echo.
set /p choice=Select option [1-3]:
cd /d "%~dp0app"
if "%choice%"=="1" (
echo Starting Web preview...
npx expo start --web
) else if "%choice%"=="2" (
echo Starting Expo for device...
npx expo start
) else (
exit /b 0
)