added static server

This commit is contained in:
2025-04-25 23:53:00 +01:00
parent 30b464449c
commit b9f5dec9de
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
python3 -m http.server 8083 &
go run staticServer.go &

View File

@@ -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()