refactor to Go and release v1 #30

Manually merged
williamp merged 33 commits from v1-refactor into master 2026-03-07 01:06:53 +00:00
Showing only changes of commit 7bd9ef1230 - Show all commits

View File

@@ -36,6 +36,16 @@
source .env
set +a
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
'';
};
});