first commit

This commit is contained in:
2024-10-05 10:06:52 +02:00
commit 0784cad8af
57 changed files with 965 additions and 0 deletions

9
scripts/with-env.sh Normal file
View File

@@ -0,0 +1,9 @@
if [ ! -d "$ROOT/.venv" ]; then
echo "Creating virtual environment..."
python3 -m venv $ROOT/.venv
source $ROOT/.venv/bin/activate
pip install -r $ROOT/requirements.txt
touch .venv/touchfile
else
source $ROOT/.venv/bin/activate
fi