File tree 3 files changed +21
-10
lines changed
3 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 1
1
.idea
2
- * .iml
2
+ * .iml
3
+ echo-cms
Original file line number Diff line number Diff line change @@ -18,21 +18,21 @@ func LoadConfig() {
18
18
}
19
19
20
20
type SiteHeader struct {
21
- Title string
22
- Keywords string
23
- Description string
21
+ Title string
22
+ Keywords string
23
+ Description string
24
24
}
25
25
26
26
func GetSiteHeader (moduleName string ) SiteHeader {
27
27
var header SiteHeader
28
28
path := "site." + moduleName + ".head"
29
29
err := viper .UnmarshalKey (path , & header )
30
30
if err != nil {
31
- panic (fmt .Errorf ("Fatal error config file: %s \n " , err ))
31
+ panic (fmt .Errorf ("Fatal error config file: %s \n " , err ))
32
32
}
33
33
return header
34
34
}
35
35
36
36
func (h * SiteHeader ) SetTitle (title string ) {
37
37
h .Title = title + h .Title
38
- }
38
+ }
Original file line number Diff line number Diff line change @@ -2,20 +2,30 @@ package main
2
2
3
3
import (
4
4
"github.com/labstack/echo"
5
+ "github.com/labstack/gommon/log"
5
6
7
+ "github.com/labstack/echo/middleware"
6
8
"github.com/mrlsd/echo-cms/config"
7
9
"github.com/mrlsd/echo-cms/modules/backend"
8
- "github.com/gpmgo/gopm/modules/log"
9
10
)
10
11
11
12
func main () {
12
13
config .LoadConfig ()
13
14
14
15
e := echo .New ()
16
+
17
+ // Routers
18
+ backend .UrlRules (e )
19
+ e .Static ("/" , "static" )
20
+
15
21
e .Debug = true
16
22
e .Logger .SetLevel (log .DEBUG )
17
- e .Static ("/" , "static" )
23
+ e .Pre (middleware .NonWWWRedirect ())
24
+ e .Use (middleware .Secure ())
25
+ e .Use (middleware .CSRF ())
26
+ //e.Use(middleware.Logger())
27
+ e .Use (middleware .Recover ())
28
+ e .Use (middleware .BodyLimit ("2M" ))
18
29
19
- backend .UrlRules (e )
20
- e .Start (":3000" )
30
+ e .Logger .Fatal (e .Start (":3000" ))
21
31
}
You can’t perform that action at this time.
0 commit comments