summaryrefslogtreecommitdiff
path: root/serve-http.sh
diff options
context:
space:
mode:
Diffstat (limited to 'serve-http.sh')
-rwxr-xr-xserve-http.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/serve-http.sh b/serve-http.sh
deleted file mode 100755
index 874b586..0000000
--- a/serve-http.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# this script is for previewing site changes ONLY!! it should not be used to
-# actually serve a site. use apache or nginx or something for that.
-
-# launch webserver
-python3 -m http.server --directory public/ &
-server_pid="$!"
-echo "server launched with PID $server_pid"
-
-# kill server on exit
-trap "kill $server_pid && echo && echo \"bye!\"" EXIT
-
-# rebuild on file changes (inotifywait is from inotify-tools)
-while inotifywait -qr --event modify .; do
- echo "rebuilding site..."
- argent
- echo "done."
-done