You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.go 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2016 The Gitea 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. // Gitea (git with a cup of tea) is a painless self-hosted Git Service.
  6. package main // import "code.gitea.io/gitea"
  7. import (
  8. "os"
  9. "runtime"
  10. "strings"
  11. "code.gitea.io/gitea/cmd"
  12. "code.gitea.io/gitea/modules/log"
  13. "code.gitea.io/gitea/modules/setting"
  14. // register supported doc types
  15. _ "code.gitea.io/gitea/modules/markup/csv"
  16. _ "code.gitea.io/gitea/modules/markup/markdown"
  17. _ "code.gitea.io/gitea/modules/markup/orgmode"
  18. "github.com/urfave/cli"
  19. )
  20. var (
  21. // Version holds the current Gitea version
  22. Version = "1.9.0-dev"
  23. // Tags holds the build tags used
  24. Tags = ""
  25. // MakeVersion holds the current Make version if built with make
  26. MakeVersion = ""
  27. )
  28. func init() {
  29. setting.AppVer = Version
  30. setting.AppBuiltWith = formatBuiltWith(Tags)
  31. }
  32. func main() {
  33. app := cli.NewApp()
  34. app.Name = "Gitea"
  35. app.Usage = "A painless self-hosted Git service"
  36. app.Description = `By default, gitea will start serving using the webserver with no
  37. arguments - which can alternatively be run by running the subcommand web.`
  38. app.Version = Version + formatBuiltWith(Tags)
  39. app.Commands = []cli.Command{
  40. cmd.CmdWeb,
  41. cmd.CmdServ,
  42. cmd.CmdHook,
  43. cmd.CmdDump,
  44. cmd.CmdCert,
  45. cmd.CmdAdmin,
  46. cmd.CmdGenerate,
  47. cmd.CmdMigrate,
  48. cmd.CmdKeys,
  49. }
  50. app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
  51. app.Action = cmd.CmdWeb.Action
  52. err := app.Run(os.Args)
  53. if err != nil {
  54. log.Fatal("Failed to run app with %s: %v", os.Args, err)
  55. }
  56. }
  57. func formatBuiltWith(makeTags string) string {
  58. var version = runtime.Version()
  59. if len(MakeVersion) > 0 {
  60. version = MakeVersion + ", " + runtime.Version()
  61. }
  62. if len(Tags) == 0 {
  63. return " built with " + version
  64. }
  65. return " built with " + version + " : " + strings.Replace(Tags, " ", ", ", -1)
  66. }