mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			826 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			826 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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)
 | |
| }
 | 
