1 Star 0 Fork 70

後天/GoFlyAdmin(很漂亮且易用的Go语言后台系统框架)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
huang_li_shi 提交于 2024-02-29 19:05 . 2024-2-29
package main
import (
"fmt"
"gofly/bootstrap"
"gofly/global"
"runtime"
"strconv"
)
func main() {
// 初始化配置
global.App.Config.InitializeConfig()
// 初始化日志
global.App.Log = bootstrap.InitializeLog()
global.App.Log.Info("项目启动成功")
//将对象,转换成json格式
// data_config, err := json.Marshal(conf)
// if err != nil {
// fmt.Println("err:\t", err.Error())
// return
// }
// fmt.Println("data_config:\t", string(data_config))
// fmt.Println("config.Database.Driver=", conf.App.Port)
//加载配置
cpu_num, _ := strconv.Atoi(global.App.Config.App.CPUnum)
mycpu := runtime.NumCPU()
if cpu_num > mycpu { //如果配置cpu核数大于当前计算机核数,则等当前计算机核数
cpu_num = mycpu
}
if cpu_num > 0 {
runtime.GOMAXPROCS(cpu_num)
global.App.Log.Info(fmt.Sprintf("当前计算机核数: %v个,调用:%v个", mycpu, cpu_num))
} else {
runtime.GOMAXPROCS(mycpu)
global.App.Log.Info(fmt.Sprintf("当前计算机核数: %v个,调用:%v个", mycpu, mycpu))
}
// 启动服务器
bootstrap.RunServer()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/houtian213/GoFlyAdmin.git
git@gitee.com:houtian213/GoFlyAdmin.git
houtian213
GoFlyAdmin
GoFlyAdmin(很漂亮且易用的Go语言后台系统框架)
master

搜索帮助