mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
d0104defa8
relative: https://github.com/kataras/iris/issues/1283 and removing pongo2 from vendor: https://github.com/kataras/iris/issues/1284 Former-commit-id: 3ec57b349f99faca2b8e36d9f7252db0b6ea080d
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/_benchmarks/iris-mvc-templates/controllers"
|
|
|
|
"github.com/kataras/iris"
|
|
"github.com/kataras/iris/context"
|
|
"github.com/kataras/iris/mvc"
|
|
)
|
|
|
|
const (
|
|
// publicDir is the exactly the same path that .NET Core is using for its templates,
|
|
// in order to reduce the size in the repository.
|
|
// Change the "C\\mygopath" to your own GOPATH.
|
|
// publicDir = "C:\\mygopath\\src\\github.com\\kataras\\iris\\_benchmarks\\netcore-mvc-templates\\wwwroot"
|
|
publicDir = "/home/kataras/mygopath/src/github.com/kataras/iris/_benchmarks/netcore-mvc-templates/wwwroot"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.RegisterView(iris.HTML("./views", ".html").Layout("shared/layout.html"))
|
|
app.HandleDir("/public", publicDir)
|
|
app.OnAnyErrorCode(onError)
|
|
|
|
mvc.New(app).Handle(new(controllers.HomeController))
|
|
|
|
app.Run(iris.Addr(":5000"))
|
|
}
|
|
|
|
type err struct {
|
|
Title string
|
|
Code int
|
|
}
|
|
|
|
func onError(ctx context.Context) {
|
|
ctx.ViewData("", err{"Error", ctx.GetStatusCode()})
|
|
ctx.View("shared/error.html")
|
|
}
|