all repos — site @ 23f1a2b6e77c3264a88da70a8da8fc9213950b8f

source for my site, found at icyphox.sh

bin/serve.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
#!/usr/bin/env bash

kill_vite() {
    trap SIGINT
    echo "cleaning up..."
    pkill vite
    exit
}
trap "kill_vite" INT

vite serve &
find pages/ static/ templates/ | entr vite build

trap SIGINT