all repos — site @ 06f43d1e74e64d8c9a322ffd8c522e97b48bf2cd

source for my site, found at icyphox.sh

bin/build.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
#!/bin/sh


rm -rf go-vite
git clone https://github.com/icyphox/go-vite
cd go-vite && make && cd ..
mkdir build

if [ "$VITE_ENV" = "production" ]; then
  go-vite/vite build
else
  go-vite/vite build --drafts
fi