second-automation-bot / run_mac.command
abdulsalam2121
first commit
ec2ef5e
Raw
History Blame Contribute Delete
232 Bytes
#!/bin/bash
cd "$(dirname "$0")"
if [ ! -x ".venv/bin/python3" ]; then
python3 -m venv .venv
fi
source ".venv/bin/activate"
python -m pip install -r app/requirements.txt
python -m playwright install chromium
python app/web_app.py