2014-02-19 11:04:31 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2016-12-21 05:13:17 -07:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2014-02-19 11:04:31 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-02-19 02:50:53 -07:00
|
|
|
|
2016-11-11 06:56:35 -07:00
|
|
|
// Gitea (git with a cup of tea) is a painless self-hosted Git Service.
|
|
|
|
package main // import "code.gitea.io/gitea"
|
2014-02-12 10:49:46 -07:00
|
|
|
|
|
|
|
import (
|
2014-02-19 02:50:53 -07:00
|
|
|
"os"
|
2019-01-24 08:22:51 -07:00
|
|
|
"runtime"
|
2017-02-27 17:40:02 -07:00
|
|
|
"strings"
|
2016-11-30 16:56:15 -07:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/cmd"
|
2017-01-04 06:16:03 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-11-01 07:41:07 -06:00
|
|
|
|
2017-09-20 23:20:14 -06:00
|
|
|
// register supported doc types
|
2018-07-20 15:08:15 -06:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/csv"
|
2017-09-20 23:20:14 -06:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/markdown"
|
|
|
|
_ "code.gitea.io/gitea/modules/markup/orgmode"
|
|
|
|
|
2016-11-04 06:44:23 -06:00
|
|
|
"github.com/urfave/cli"
|
2014-02-12 10:49:46 -07:00
|
|
|
)
|
|
|
|
|
2016-11-04 05:32:04 -06:00
|
|
|
// Version holds the current Gitea version
|
2018-02-03 08:03:43 -07:00
|
|
|
var Version = "1.5.0-dev"
|
2014-02-12 10:49:46 -07:00
|
|
|
|
2017-02-27 17:40:02 -07:00
|
|
|
// Tags holds the build tags used
|
|
|
|
var Tags = ""
|
|
|
|
|
2014-02-12 12:54:09 -07:00
|
|
|
func init() {
|
2016-11-04 05:32:04 -06:00
|
|
|
setting.AppVer = Version
|
2017-02-27 17:40:02 -07:00
|
|
|
setting.AppBuiltWith = formatBuiltWith(Tags)
|
2014-02-12 12:54:09 -07:00
|
|
|
}
|
|
|
|
|
2014-02-12 10:49:46 -07:00
|
|
|
func main() {
|
2014-02-19 02:50:53 -07:00
|
|
|
app := cli.NewApp()
|
2016-11-11 06:56:35 -07:00
|
|
|
app.Name = "Gitea"
|
|
|
|
app.Usage = "A painless self-hosted Git service"
|
2018-01-09 21:58:08 -07:00
|
|
|
app.Description = `By default, gitea will start serving using the webserver with no
|
|
|
|
arguments - which can alternatively be run by running the subcommand web.`
|
2017-02-27 17:40:02 -07:00
|
|
|
app.Version = Version + formatBuiltWith(Tags)
|
2014-02-19 02:50:53 -07:00
|
|
|
app.Commands = []cli.Command{
|
2014-05-01 19:21:46 -06:00
|
|
|
cmd.CmdWeb,
|
|
|
|
cmd.CmdServ,
|
2017-02-22 20:40:44 -07:00
|
|
|
cmd.CmdHook,
|
2014-06-10 17:11:53 -06:00
|
|
|
cmd.CmdDump,
|
2014-09-22 15:30:58 -06:00
|
|
|
cmd.CmdCert,
|
2016-08-13 17:11:52 -06:00
|
|
|
cmd.CmdAdmin,
|
2018-02-18 11:14:37 -07:00
|
|
|
cmd.CmdGenerate,
|
2018-10-30 21:14:42 -06:00
|
|
|
cmd.CmdMigrate,
|
2018-11-01 07:41:07 -06:00
|
|
|
cmd.CmdKeys,
|
2014-02-19 02:50:53 -07:00
|
|
|
}
|
2018-10-31 18:36:41 -06:00
|
|
|
app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
|
2018-01-09 21:58:08 -07:00
|
|
|
app.Action = cmd.CmdWeb.Action
|
2016-11-30 16:56:15 -07:00
|
|
|
err := app.Run(os.Args)
|
|
|
|
if err != nil {
|
2017-01-29 13:13:57 -07:00
|
|
|
log.Fatal(4, "Failed to run app with %s: %v", os.Args, err)
|
2016-11-30 16:56:15 -07:00
|
|
|
}
|
2014-02-12 10:49:46 -07:00
|
|
|
}
|
2017-02-27 17:40:02 -07:00
|
|
|
|
|
|
|
func formatBuiltWith(Tags string) string {
|
|
|
|
if len(Tags) == 0 {
|
2019-01-24 08:22:51 -07:00
|
|
|
return " built with " + runtime.Version()
|
2017-02-27 17:40:02 -07:00
|
|
|
}
|
|
|
|
|
2019-01-24 08:22:51 -07:00
|
|
|
return " built with " + runtime.Version() + " : " + strings.Replace(Tags, " ", ", ", -1)
|
2017-02-27 17:40:02 -07:00
|
|
|
}
|