Source repo for my content at burningdaylight.io. Content maintained using Obsidian and published using Obsidian Publish mkdocs.
-
git clone
the repo -
Set up a project
venv
python3 -m venv venv
-
Source the
venv
Update pip
pip install -U pip
after the first activation, and as needed after. -
Install requirements
pip install -r requirements.txt
-
Serve the docs
mkdocs serve
Full steps assuming python3 is installed, but no venv setup
python3 -m venv venv
source ./venv/bin/activate
pip install -U
pip install -r requirements.txt
mkdocs serve