Moved blog to dedicated page

This commit is contained in:
Yan Lin 2025-06-01 20:57:18 +02:00
parent 7b37f017ba
commit 0f4437d78c
36 changed files with 397 additions and 1631 deletions

View file

@ -13,16 +13,15 @@ pkgs.mkShell {
in ''
export PIP_REQUIRE_VIRTUALENV=1
export VENV_PATH=${venvPath}
if [ ! -d $VENV_PATH ]; then
python -m venv $VENV_PATH
fi
source $VENV_PATH/bin/activate
pip install -r requirements.txt
python parser/md.py
python generate.py
${if isDev then ''
pip install watchdog==6.0.0
python watch.py && exit