If baseurl is set then print that on the command line, else leave as default of localhost

This commit is contained in:
William King 2013-12-16 00:37:09 -08:00
parent a10519643d
commit 073dd984dc

View file

@ -64,7 +64,11 @@ func serve(port int) {
fmt.Println("Serving pages from " + Config.GetAbsPath(Config.PublishDir))
}
if BaseUrl == "" {
fmt.Printf("Web Server is available at %s\n", Config.BaseUrl)
} else {
fmt.Printf("Web Server is available at http://localhost:%v\n", port)
}
fmt.Println("Press ctrl+c to stop")
panic(http.ListenAndServe(":"+strconv.Itoa(port), http.FileServer(http.Dir(Config.GetAbsPath(Config.PublishDir)))))
}