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