Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 432 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 432 Bytes

Personal site

This repository is for my personal site.

Setup

To build the site you will need:

  • Python3.12
  • GNU Make
  1. Create a virtual environment
    python3.12 -m venv --prompt . --upgrade-deps .venv
  2. Install dependencies
    source .venv/bin/activate
    
    pip install -r requirements.txt
  3. Build site
    make html
  4. Serve site
    make serve