#!/usr/bin/env bash ( cd "$(dirname "$0")" if ! [[ -d venv ]]; then python3 -m venv venv fi source venv/bin/activate pip install -r requirements.txt mkdocs serve )