commit: d81f4e77c45efc13efd9b398f3affe7caee42a49
parent: 7ec3fe97bbbf2e15825f2288526ed1da8915304e
author: Chris Noxz <chris@noxz.tech>
date: Sat, 25 Jun 2022 15:59:35 +0200
add the ability to quickly preview the web site
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -38,4 +38,8 @@ clean:
clean-git:
@find ./git.noxz.tech/* -type d -prune ! -name "pub" -exec sh -ec 'rm -rf "$$0"' {} \;
-.PHONY: all check publish ipfs clean clean-git
+preview:
+ @echo trying to start web server at port 8000
+ @python -m http.server 8000 --directory ./noxz.tech
+
+.PHONY: all check publish ipfs clean clean-git preview