File size: 232 Bytes
ec2ef5e | 1 2 3 4 5 6 7 8 9 10 | #!/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
|