diff --git a/Docs/run-docs.sh b/Docs/run-docs.sh index 6a7a362..59b90cf 100644 --- a/Docs/run-docs.sh +++ b/Docs/run-docs.sh @@ -1 +1 @@ -python3 -m http.server 8083 & +go run staticServer.go & diff --git a/Docs/staticServer.go b/Docs/staticServer.go index c88ae4a..0a125d3 100644 --- a/Docs/staticServer.go +++ b/Docs/staticServer.go @@ -17,7 +17,7 @@ import ( ) func main() { - port := flag.String("p", "8100", "port to serve on") + port := flag.String("p", "8083", "port to serve on") directory := flag.String("d", ".", "the directory of static file to host") flag.Parse()