1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package main
- import (
- "os"
- "os/user"
- "runtime"
- "github.com/codegangsta/cli"
- "github.com/gogits/gogs/modules/base"
- )
- const go11tag = true
- const APP_VER = "0.0.7.0313"
- func init() {
- runtime.GOMAXPROCS(runtime.NumCPU())
- }
- func checkRunUser() bool {
- u, err := user.Current()
- if err != nil {
-
- return false
- }
- return u.Username == base.Cfg.MustValue("", "RUN_USER")
- }
- func main() {
-
- 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)
- }
|