change port to 3000
Some checks failed
Create and publish a Docker image 🚀 / build-and-push-image (push) Failing after 23s

This commit is contained in:
Smile Rex
2026-01-26 17:35:16 +03:00
parent 179961f5c0
commit 243fd38554

View File

@@ -9,7 +9,7 @@ func main() {
fs := http.FileServer(http.Dir("./dist"))
http.Handle("/", fs)
addr := ":8181"
addr := ":3000"
log.Println("Server started on", addr)
log.Fatal(http.ListenAndServe(addr, nil))
}