all repos — site @ 4453e369d1224da863430e44c609ac43a987fb13

source for my site, found at icyphox.sh

bin: move build.sh and add serve.sh
Anirudh Oppiliappan x@icyphox.sh
Sat, 05 Feb 2022 09:27:17 +0530
commit

4453e369d1224da863430e44c609ac43a987fb13

parent

0da495ed4b5b485bc7a5decc67036ce4986c5928

3 files changed, 5 insertions(+), 1 deletions(-)

jump to
A bin/serve.sh

@@ -0,0 +1,4 @@

+#!/bin/sh + +python3 -m http.server --directory build &> /dev/null +find pages/ | entr vite build
M netlify.tomlnetlify.toml

@@ -1,3 +1,3 @@

[build] publish = "build/" - command = "./build.sh" + command = "./bin/build.sh"