mehraniqbalgp/QEC-Automation
0
1@echo off2echo ===================================================3echo Starting QEC Auto-Filler Application4echo ===================================================5 6:: Check if virtual environment exists, if not create it7if not exist venv (8 echo [1/4] Creating Python virtual environment...9 python -m venv venv10) else (11 echo [1/4] Virtual environment found.12)13 14:: Activate the virtual environment15echo [2/4] Activating virtual environment...16call venv\Scripts\activate.bat17 18:: Install dependencies19echo [3/4] Checking and installing requirements...20pip install -r requirements.txt21playwright install22 23:: Start the application24echo [4/4] Starting the Flask Web Server...25echo The application will be available at http://localhost:500026echo Keep this window open to keep the server running.27echo ===================================================28 29:: Automatically open the default browser to the web app30start http://localhost:500031 32:: Run the app33python app.py34pause35 