D3vugu-components/scripts/dev-server/devserver.go

32 lines
974 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"}
var wasmHandler WASMExecHandler
wd, _ := os.Getwd()
uiDir := filepath.Join(wd)
l := ":8875"
log.Printf("Starting HTTP Server at %q", l)
h := simplehttp.New(uiDir, true)
http.Handle("/wasm_exec.js", &wasmHandler) // A hack to circumvent the old hardcoded path in simplehttp. TODO: Seek alternative to the simplehttp dev server
http.Handle("/", h)
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(filepath.Join(uiDir, "static")))))
log.Fatal(http.ListenAndServe(l, nil))
}