From 138599c9d8521c075973ae20abd55caf20865b12 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Mon, 14 Apr 2025 17:26:05 +0100 Subject: [PATCH] Update default port of server --- server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.go b/server/main.go index 28dca0c..1af9201 100644 --- a/server/main.go +++ b/server/main.go @@ -21,7 +21,7 @@ func main() { PORT := os.Getenv("PORT") if len(PORT) == 0 { - PORT = "8080" + PORT = "5000" } ALLOWED_ORIGIN := os.Getenv("ALLOWED_ORIGIN")