noxz-sites

A collection of a builder and various scripts creating the noxz.tech sites
git clone https://noxz.tech/git/noxz-sites.git
Log | Files | README | LICENSE

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
MMakefile6+++++-
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