blob: c503a4af825e4bd3288686fb0b6972c2f8e56148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"net/http"
"github.com/codegangsta/martini"
"github.com/martini-contrib/render"
"github.com/gogits/gogs/routers"
"github.com/gogits/gogs/utils"
"github.com/gogits/gogs/utils/log"
)
const APP_VER = "0.0.0.0212"
func init() {
}
func main() {
log.Info("App Name: %s", utils.Cfg.MustValue("", "APP_NAME"))
m := martini.Classic()
// Middleware.
m.Use(render.Renderer())
// Routers.
m.Get("/", routers.Dashboard)
listenAddr := fmt.Sprintf("%s:%s",
utils.Cfg.MustValue("server", "HTTP_ADDR"),
utils.Cfg.MustValue("server", "HTTP_PORT", "3000"))
log.Info("Listen: %s", listenAddr)
http.ListenAndServe(listenAddr, m)
}
|