change port to 3000
Some checks failed
Create and publish a Docker image 🚀 / build-and-push-image (push) Failing after 23s
Some checks failed
Create and publish a Docker image 🚀 / build-and-push-image (push) Failing after 23s
This commit is contained in:
2
main.go
2
main.go
@@ -9,7 +9,7 @@ func main() {
|
|||||||
fs := http.FileServer(http.Dir("./dist"))
|
fs := http.FileServer(http.Dir("./dist"))
|
||||||
http.Handle("/", fs)
|
http.Handle("/", fs)
|
||||||
|
|
||||||
addr := ":8181"
|
addr := ":3000"
|
||||||
log.Println("Server started on", addr)
|
log.Println("Server started on", addr)
|
||||||
log.Fatal(http.ListenAndServe(addr, nil))
|
log.Fatal(http.ListenAndServe(addr, nil))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user