ADM-Purchasing-Tools / run_windows.bat
abdulsalam2121
Add automation bot with Flask and Playwright
5b29309
Raw
History Blame Contribute Delete
240 Bytes
@echo off
setlocal
cd /d "%~dp0"
if not exist ".venv\Scripts\python.exe" (
python -m venv .venv
)
call ".venv\Scripts\activate.bat"
python -m pip install -r app\requirements.txt
python -m playwright install chromium
python app\web_app.py