edit port 8085

This commit is contained in:
2026-07-12 20:21:36 +02:00
parent 31d94a35fd
commit bc7b64ca3d
6 changed files with 11 additions and 3 deletions
+2 -3
View File
@@ -13,7 +13,6 @@ import (
"os"
"path/filepath"
"strings"
"github.com/yuin/goldmark"
)
@@ -21,8 +20,8 @@ const articlesDir = "data/articles"
func main() {
http.HandleFunc("/", handlePage)
println("Server läuft auf http://localhost:8080")
http.ListenAndServe(":8080", nil)
println("Server läuft auf http://localhost:8085")
http.ListenAndServe(":8085", nil)
}
func handlePage(w http.ResponseWriter, r *http.Request) {