gitea/gogs.go

43 lines
857 B
Go
Raw Normal View History

2014-04-13 17:14:43 +10:00
// +build go1.2
2014-02-20 05:04:31 +11:00
// 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.
2014-02-19 20:50:53 +11:00
2014-03-23 11:25:39 +11:00
// Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
2014-02-13 04:49:46 +11:00
package main
import (
2014-02-19 20:50:53 +11:00
"os"
"runtime"
2014-02-13 04:49:46 +11:00
2014-02-19 20:50:53 +11:00
"github.com/codegangsta/cli"
2014-03-11 11:53:30 +11:00
2014-03-08 09:22:15 +11:00
"github.com/gogits/gogs/modules/base"
2014-02-13 04:49:46 +11:00
)
2014-03-21 07:04:56 +11:00
// Test that go1.2 tag above is included in builds. main.go refers to this definition.
const go12tag = true
2014-02-19 20:50:53 +11:00
2014-05-02 02:03:10 +10:00
const APP_VER = "0.3.2.0501 Alpha"
2014-02-13 04:49:46 +11:00
2014-02-13 06:54:09 +11:00
func init() {
base.AppVer = APP_VER
2014-02-19 20:50:53 +11:00
runtime.GOMAXPROCS(runtime.NumCPU())
2014-02-13 06:54:09 +11:00
}
2014-02-13 04:49:46 +11:00
func main() {
2014-02-19 20:50:53 +11:00
app := cli.NewApp()
2014-02-20 05:04:31 +11:00
app.Name = "Gogs"
2014-02-19 20:50:53 +11:00
app.Usage = "Go Git Service"
app.Version = APP_VER
app.Commands = []cli.Command{
CmdWeb,
CmdServ,
2014-03-16 15:18:34 +11:00
CmdUpdate,
2014-05-01 13:48:01 +10:00
// CmdFix,
2014-02-19 20:50:53 +11:00
}
2014-03-16 17:28:24 +11:00
app.Flags = append(app.Flags, []cli.Flag{}...)
2014-02-19 20:50:53 +11:00
app.Run(os.Args)
2014-02-13 04:49:46 +11:00
}