fix typo in default port

This commit is contained in:
jc 2024-02-25 02:11:15 -05:00
commit aad41ab47c
No known key found for this signature in database

View file

@ -44,8 +44,8 @@ func main() {
e.GET("/", pages.Index) e.GET("/", pages.Index)
port := os.Getenv("PORT") port := os.Getenv("PORT")
if port != "" { if port == "" {
port = "5713" port = "5173"
} }
e.Logger.Fatal(e.Start(fmt.Sprintf(":%s", port))) e.Logger.Fatal(e.Start(fmt.Sprintf(":%s", port)))