all repos — site @ 6c04fd34a0ce664f01f3a369877cd9fcaa6bd164

source for my site, found at icyphox.sh

bin/serve.sh (view raw)

 1#!/usr/bin/env bash
 2
 3kill_vite() {
 4    trap SIGINT
 5    echo "cleaning up..."
 6    pkill vite
 7    exit
 8}
 9trap "kill_vite" INT
10
11vite serve &
12find pages/ static/ templates/ | entr vite build
13
14trap SIGINT