generated from origadmin/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
91 lines (80 loc) · 2.42 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright (c) 2024 OrigAdmin. All rights reserved.
//go:generate swag init --parseDependency --generalInfo ./main.go --output ./docs
// #go:generate docker run --rm -v "${PWD}:/local" openapitools/openapi-generator-cli generate --git-repo-id swagger-api --git-user-id origadmin -i /local/docs/swagger.json -g go-gin-server -o /local/docs/v3
// Package main is the main package for origen
package main
import (
"fmt"
"os"
goversion "github.com/caarlos0/go-version"
"github.com/spf13/cobra"
"github.com/origadmin/origen/cmd"
"github.com/origadmin/origen/config"
)
// tags for goreleaser
var (
version = ""
commit = ""
treeState = ""
date = ""
builtBy = ""
// debug = false
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "origen",
Short: "A scaffolding for quickly setting up a project.",
Long: "A scaffolding for quickly setting up a project.\n" +
"Includes but is not limited to RBAC, user management,\n" +
"logging, file management, and more.",
Run: func(cmd *cobra.Command, args []string) {
// Place your logic here
// _ = cmd.Help()
},
}
func init() {
// cobra.AddTemplateFuncs(usage.Template)
goinfo := buildVersion(version, commit, date, builtBy, treeState)
rootCmd.SilenceUsage = true
rootCmd.SilenceErrors = true
rootCmd.CompletionOptions.HiddenDefaultCmd = true
rootCmd.CompletionOptions.DisableNoDescFlag = true
// rootCmd.SetUsageTemplate(resources.Usage)
rootCmd.AddCommand(cmd.InitCmd(), cmd.NewCmd())
rootCmd.Version = goinfo.String()
}
func main() {
Execute()
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
err := rootCmd.Execute()
if err != nil {
fmt.Printf("Command executed with error:\n%v\n", err)
os.Exit(1)
}
}
func buildVersion(version, commit, date, builtBy, treeState string) goversion.Info {
return goversion.GetVersionInfo(
goversion.WithAppDetails(config.Project, "A scaffolding for quickly setting up a project.", config.WebSite),
goversion.WithASCIIName(config.UI),
func(i *goversion.Info) {
if commit != "" {
i.GitCommit = commit
}
if version != "" {
i.GitVersion = version
}
if treeState != "" {
i.GitTreeState = treeState
}
if date != "" {
i.BuildDate = date
}
if builtBy != "" {
i.BuiltBy = builtBy
}
},
)
}