From 619e4446510d57cc02ba497618463e75a97e708b Mon Sep 17 00:00:00 2001 From: Sharon Koech Date: Tue, 28 Jan 2025 15:37:18 +0300 Subject: [PATCH] Use the less common TCP port 18000 (#492) # Description When trying to run my local build of the docs, I run into this: `ERROR: [Errno 98] error while attempting to bind on address ('127.0.0.1', 8000): address already in use make: *** [Makefile:62: run] Error 1` Port 8000 seems to be a poor choice to use as it is very common, so I have modified the Makefile to use a different, less common port. ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) - [x] Documentation update (Doc only change) Signed-off-by: Sharon Koech --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 5f7c0386..775c38e8 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -80,7 +80,7 @@ epub: install serve: html - cd "$(BUILDDIR)"; python3 -m http.server 8000 + cd "$(BUILDDIR)"; python3 -m http.server 18000 .PHONY: serve