You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
782 B
Go

package main
import (
"log"
"net/http"
"os"
"path/filepath"
"github.com/vugu/vugu/simplehttp"
)
func main() {
// A hackish way to insert metadata and other stuff into the head tag.
simplehttp.DefaultStaticData["MetaTags"] = map[string]string{"viewport": "width=device-width, initial-scale=1"}
simplehttp.DefaultStaticData["Title"] = "D3vugu-components examples"
simplehttp.DefaultStaticData["CSSFiles"] = []string{"/static/css/d3c-theme-base.css"}
wd, _ := os.Getwd()
uiDir := filepath.Join(wd)
l := ":8875"
log.Printf("Starting HTTP Server at %q", l)
h := simplehttp.New(uiDir, true)
http.Handle("/", h)
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(filepath.Join(uiDir, "static")))))
log.Fatal(http.ListenAndServe(l, nil))
}