diff options
Diffstat (limited to 'gogs.go')
-rw-r--r-- | gogs.go | 67 |
1 files changed, 36 insertions, 31 deletions
@@ -1,44 +1,49 @@ -// 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. - +// Copyright 2013-2014 gogs authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"): you may +// not use this file except in compliance with the License. You may obtain +// a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations +// under the License. + +// gogs(Go Git Service) is a Go clone of Github. package main import ( - "fmt" - "net/http" - - "github.com/codegangsta/martini" - "github.com/martini-contrib/render" + "os" + "runtime" - "github.com/gogits/gogs/routers" - "github.com/gogits/gogs/routers/user" - "github.com/gogits/gogs/utils" - "github.com/gogits/gogs/utils/log" + "github.com/codegangsta/cli" ) +// +build go1.1 + +// Test that go1.1 tag above is included in builds. main.go refers to this definition. +const go11tag = true + const APP_VER = "0.0.0.0218" func init() { - + runtime.GOMAXPROCS(runtime.NumCPU()) } func main() { - log.Info("%s %s", utils.Cfg.MustValue("", "APP_NAME"), APP_VER) - - m := martini.Classic() - - // Middleware. - m.Use(render.Renderer()) - - // Routers. - m.Get("/", routers.Dashboard) - m.Get("/user/signin", user.SignIn) - m.Any("/user/signup", user.SignUp) - - 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) + app := cli.NewApp() + app.Name = "gogs" + app.Usage = "Go Git Service" + app.Version = APP_VER + app.Commands = []cli.Command{ + CmdWeb, + CmdServ, + } + app.Flags = append(app.Flags, []cli.Flag{ + cli.BoolFlag{"noterm", "disable color output"}, + }...) + app.Run(os.Args) } |