fix dev code

This commit is contained in:
aichy126 2022-12-15 16:48:07 +08:00
parent 4c354090c7
commit 4fd208ba46
1 changed files with 3 additions and 10 deletions

View File

@ -3,7 +3,6 @@ package server
import (
"html/template"
"io/fs"
"os"
brotli "github.com/anargu/gin-brotli"
"github.com/answerdev/answer/internal/base/middleware"
@ -32,15 +31,9 @@ func NewHTTPServer(debug bool,
r.Use(brotli.Brotli(brotli.DefaultCompression))
r.GET("/healthz", func(ctx *gin.Context) { ctx.String(200, "OK") })
dev := os.Getenv("DEVCODE")
if dev != "" {
r.SetFuncMap(funcMap)
r.LoadHTMLGlob("../../ui/template/*")
} else {
html, _ := fs.Sub(ui.Template, "template")
htmlTemplate := template.Must(template.New("").Funcs(funcMap).ParseFS(html, "*"))
r.SetHTMLTemplate(htmlTemplate)
}
html, _ := fs.Sub(ui.Template, "template")
htmlTemplate := template.Must(template.New("").Funcs(funcMap).ParseFS(html, "*"))
r.SetHTMLTemplate(htmlTemplate)
viewRouter.Register(r)