From 2796d816e8d58e6cd4b272d63bc8643344d06e4c Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Fri, 16 May 2025 15:17:41 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20Use=20port=208088=20for?= =?UTF-8?q?=20front-end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front-end/cmd/web/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front-end/cmd/web/main.go b/front-end/cmd/web/main.go index c374828..12c2e8c 100644 --- a/front-end/cmd/web/main.go +++ b/front-end/cmd/web/main.go @@ -12,8 +12,8 @@ func main() { render(w, "test.page.gohtml") }) - fmt.Println("Starting front end service on port 80") - err := http.ListenAndServe(":80", nil) + fmt.Println("Starting front end service on port 8088") + err := http.ListenAndServe(":8088", nil) if err != nil { log.Panic(err) }