You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/kyokomi/emoji"
|
|
|
|
)
|
|
|
|
|
|
|
|
const listeningPort = "80"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fmt.Println("#####################################")
|
|
|
|
fmt.Println("########## StackEdit Server #########")
|
|
|
|
fmt.Println("########## by Quentin McGaw #########")
|
|
|
|
fmt.Println("########## Give some " + emoji.Sprint(":heart:") + "at ##########")
|
|
|
|
fmt.Println("# github.com/qdm12/stackedit-docker #")
|
|
|
|
fmt.Print("#####################################\n\n")
|
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
http.ServeFile(w, r, r.URL.Path[1:])
|
|
|
|
})
|
|
|
|
log.Println("Web UI listening on 0.0.0.0:" + listeningPort + emoji.Sprint(" :ear:"))
|
|
|
|
log.Fatal(http.ListenAndServe("0.0.0.0:"+listeningPort, nil))
|
|
|
|
}
|