mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
826 B
41 lines
826 B
// 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.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) |
|
}
|
|
|