This repository contains my personal website, which is hosted on olivi-eh.dev.
These instructions assume you have Python 3.12+ installed. Fetch the dependencies:
pip3 install -r requirements.txt
Generate HTML files from Markdown:
./make.sh
The files will be generated into an out/
directory. You could serve them with a simple HTTP server:
python3 -m http.server -d out/ 8080
And browse to http://localhost:8080/
.