WIP: refactor and release v1 #30

Draft
williamp wants to merge 16 commits from v1-refactor into master
Showing only changes of commit 7bd9ef1230 - Show all commits

View File

@@ -36,6 +36,16 @@
source .env source .env
set +a set +a
fi fi
if [ ! -d .venv ]; then
echo "Creating Python virtual environment in .venv"
python3 -m venv .venv
fi
if compgen -G "app/*.py" > /dev/null; then
.venv/bin/pip install -r ./app/requirements.txt
source .venv/bin/activate
fi
''; '';
}; };
}); });