12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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.2.0309"
- func init() {
- runtime.GOMAXPROCS(runtime.NumCPU())
- }
- func checkRunUser() bool {
- user, err := user.Current()
- if err != nil {
-
- return false
- }
- return user.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)
- }
|