run.bat 310 B

123456789101112131415161718
  1. @echo off
  2. echo Starting Countdown Timer Application...
  3. if not exist "venv" (
  4. echo Virtual environment not found!
  5. echo Please run setup.bat first
  6. pause
  7. exit /b 1
  8. )
  9. call venv\Scripts\activate.bat
  10. python main.py
  11. if errorlevel 1 (
  12. echo.
  13. echo Application exited with an error
  14. pause
  15. )