Init commit
This commit is contained in:
parent
4836fea876
commit
96b317d3ff
8 changed files with 86 additions and 7 deletions
30
gogs.go
30
gogs.go
|
@ -5,15 +5,37 @@
|
|||
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 main() {
|
||||
m := martini.Classic()
|
||||
m.Get("/", routers.HomeGet)
|
||||
m.Run()
|
||||
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.Home)
|
||||
|
||||
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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue