matchy/bin/run.sh

11 lines
184 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
2024-08-11 18:05:28 +01:00
python py/matchy.py