git-bug/webui/pack_webui.go

33 lines
496 B
Go
Raw Normal View History

// +build ignore
package main
import (
2018-07-20 16:46:14 +03:00
"fmt"
"log"
"net/http"
"os"
"path/filepath"
"github.com/shurcooL/vfsgen"
)
func main() {
var cwd, _ = os.Getwd()
webUIAssets := http.Dir(filepath.Join(cwd, "webui/build"))
2018-07-20 16:46:14 +03:00
fmt.Println("Packing Web UI files ...")
err := vfsgen.Generate(webUIAssets, vfsgen.Options{
Filename: "webui/packed_assets.go",
PackageName: "webui",
BuildTags: "deploy_build",
VariableName: "WebUIAssets",
})
if err != nil {
log.Fatalln(err)
}
}