gogs.go 764 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // +build go1.5
  2. // Copyright 2014 The Gogs Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. // Gogs is a painless self-hosted Git Service.
  6. package main
  7. import (
  8. "os"
  9. "github.com/urfave/cli"
  10. "github.com/gogits/gogs/cmd"
  11. "github.com/gogits/gogs/modules/setting"
  12. )
  13. const APP_VER = "0.10.1.0228"
  14. func init() {
  15. setting.AppVer = APP_VER
  16. }
  17. func main() {
  18. app := cli.NewApp()
  19. app.Name = "Gogs"
  20. app.Usage = "A painless self-hosted Git service"
  21. app.Version = APP_VER
  22. app.Commands = []cli.Command{
  23. cmd.CmdWeb,
  24. cmd.Serv,
  25. cmd.CmdHook,
  26. cmd.CmdDump,
  27. cmd.CmdCert,
  28. cmd.CmdAdmin,
  29. cmd.CmdImport,
  30. }
  31. app.Flags = append(app.Flags, []cli.Flag{}...)
  32. app.Run(os.Args)
  33. }