~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website
1#!/usr/bin/env bash 2 3if [[ $DEBUG != "" ]]; then 4 set -x 5fi 6 7if command -v devenv >> /dev/null; then 8 eval "$(devenv direnvrc)" 9 use devenv 10else 11 echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'" 12 return 1 13fi 14 15if [[ $DEBUG != "" ]]; then 16 set +x 17fi