Browse Source

Show dashbard

tags/v1.2.0-rc1
Unknown 12 years ago
parent
commit
6337d3bf19
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      modules/base/conf.go
  2. +1
    -1
      serve.go
  3. +1
    -1
      web.go

+ 2
- 2
modules/base/conf.go View File

@@ -100,7 +100,7 @@ func newService() {
Service.EnableCacheAvatar = Cfg.MustBool("service", "ENABLE_CACHE_AVATAR", false)
}

func NewLogService() {
func newLogService() {
// Get and check log mode.
LogMode = Cfg.MustValue("log", "MODE", "console")
modeSec := "log." + LogMode
@@ -296,7 +296,7 @@ func NewConfigContext() {

func NewServices() {
newService()
NewLogService()
newLogService()
newCacheService()
newSessionService()
newMailService()


+ 1
- 1
serve.go View File

@@ -45,6 +45,7 @@ gogs serv provide access auth for repositories`,
}

func init() {
os.MkdirAll("log", os.ModePerm)
log.NewLogger(10000, "file", fmt.Sprintf(`{"filename":"%s"}`, "log/serv.log"))
}

@@ -72,7 +73,6 @@ func runServ(k *cli.Context) {
base.NewConfigContext()
models.LoadModelsConfig()
models.NewEngine()
base.NewLogService()

keys := strings.Split(os.Args[2], "-")
if len(keys) != 2 {


+ 1
- 1
web.go View File

@@ -89,7 +89,7 @@ func runWeb(*cli.Context) {
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})

// Routers.
m.Get("/", reqSignIn, routers.Home)
m.Get("/", ignSignIn, routers.Home)
m.Get("/issues", reqSignIn, user.Issues)
m.Get("/pulls", reqSignIn, user.Pulls)
m.Get("/stars", reqSignIn, user.Stars)


Loading…
Cancel
Save