Skip to content

Sparrow0hawk/sparrow0hawk.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Personal site

This repository is for my personal site.

Setup

To build the site you will need:

  • Python3.12
  1. Create a virtual environment
    python3.12 -m venv --prompt . --upgrade-deps .venv
  2. Install dependencies
    source .venv/bin/activate
    
    pip install .
  3. Run generate script
    python -m blog content .
  4. Serve site
    python -m http.server -d site/ 8000