matchy/run.sh

12 lines
182 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -x
set -e
git pull
2024-08-11 10:42:10 +01:00
if [ ! -d .venv ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
python -m pip install -r requirements.txt
python matchy.py