gogs.go 760 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // +build go1.6
  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/pkg/setting"
  12. )
  13. const APP_VER = "0.11.36.0306"
  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.Web,
  24. cmd.Serv,
  25. cmd.Hook,
  26. cmd.Cert,
  27. cmd.Admin,
  28. cmd.Import,
  29. cmd.Backup,
  30. cmd.Restore,
  31. }
  32. app.Flags = append(app.Flags, []cli.Flag{}...)
  33. app.Run(os.Args)
  34. }