Update default port of server

This commit is contained in:
2025-04-14 17:26:05 +01:00
parent e27535875e
commit 138599c9d8
+1 -1
View File
@@ -21,7 +21,7 @@ func main() {
PORT := os.Getenv("PORT") PORT := os.Getenv("PORT")
if len(PORT) == 0 { if len(PORT) == 0 {
PORT = "8080" PORT = "5000"
} }
ALLOWED_ORIGIN := os.Getenv("ALLOWED_ORIGIN") ALLOWED_ORIGIN := os.Getenv("ALLOWED_ORIGIN")