1 Star 0 Fork 1

闪耀星辰/api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
闪耀星辰 提交于 2023-06-13 20:52 . .env.example 文件
package main
import (
"api/app/cmd"
"api/app/cmd/make"
"api/bootstrap"
btsConig "api/config"
"api/pkg/config"
"api/pkg/console"
"fmt"
"os"
"github.com/spf13/cobra"
)
func init() {
// 加载 config 目录下的配置信息
btsConig.Initialize()
}
func main() {
// 应用的主入口,默认调用 cmd.CmdServe 命令
var rootCmd = &cobra.Command{
Use: config.Get("app.name", "api"),
Short: "A simple forum project",
Long: `Default will run "serve" command, you can use "-h" flag to see all subcommands`,
// rootCmd 的所有子命令都会执行以下代码
PersistentPreRun: func(command *cobra.Command, args []string) {
// 配置初始化,依赖命令行 --env 参数
config.InitConfig(cmd.Env)
// 初始化 Logger(日志)
bootstrap.SetupLogger()
// 初始化数据库
bootstrap.SetupDB()
// 初始化 Redis
bootstrap.SetupRedis()
// 初始化缓存
bootstrap.SetupCache()
// 初始化缓存
},
}
// 注册子命令
rootCmd.AddCommand(
cmd.CmdServe,
cmd.CmdKey,
cmd.CmdPlay,
make.CmdMake,
cmd.CmdMigrate,
cmd.CmdDBSeed,
cmd.CmdCache,
)
// 配置默认运行 Web 服务
cmd.RegisterDefaultCmd(rootCmd, cmd.CmdServe)
// 注册全局参数,--env
cmd.RegisterGlobalFlags(rootCmd)
// 执行主命令
if err := rootCmd.Execute(); err != nil {
console.Exit(fmt.Sprintf("Failed to run app with %v: %s", os.Args, err.Error()))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/shine-star/api.git
git@gitee.com:shine-star/api.git
shine-star
api
api
master

搜索帮助