+ Updated to latest release of GVA v2.7.0 build 2024/07/27.

+ Update all translations.
+ Code clean up.
This commit is contained in:
Mohamed Hassan
2024-08-03 01:56:45 +03:00
426 changed files with 25441 additions and 10728 deletions
+17 -9
View File
@@ -2,7 +2,6 @@ package core
import (
"fmt"
"time"
"github.com/flipped-aurora/gin-vue-admin/server/global"
"github.com/flipped-aurora/gin-vue-admin/server/initialize"
@@ -19,7 +18,12 @@ func RunWindowsServer() {
// 初始化redis服务
initialize.Redis()
}
if global.GVA_CONFIG.System.UseMongo {
err := initialize.Mongo.Initialization()
if err != nil {
zap.L().Error(fmt.Sprintf("%+v", err))
}
}
// 从db加载jwt数据
if global.GVA_DB != nil {
system.LoadAll()
@@ -30,21 +34,25 @@ func RunWindowsServer() {
address := fmt.Sprintf(":%d", global.GVA_CONFIG.System.Addr)
s := initServer(address, Router)
// 保证文本顺序输出
// In order to ensure that the text order output can be deleted
time.Sleep(10 * time.Microsecond)
global.GVA_LOG.Info("server run success on ", zap.String("address", address))
fmt.Printf(`
%s gin-vue-admin
%s: v2.5.7
加群方式:微信号:shouzi_1994 QQ群:622360840
%s:v2.7.0
加群方式:微信号:shouzi_1994 QQ群:470239250
项目地址:https://github.com/flipped-aurora/gin-vue-admin
插件市场:https://plugin.gin-vue-admin.com
GVA讨论社区:https://support.qq.com/products/371961
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html
默认前端文件运行地址:http://127.0.0.1:8080
如果项目让您获得了收益,希望您能请团队喝杯可乐:https://www.gin-vue-admin.com/coffee/index.html`,
--------------------------------------版权声明--------------------------------------
** 版权所有方:flipped-aurora开源团队 **
** 版权持有公司:北京翻转极光科技有限责任公司 **
** 剔除授权标识需购买商用授权:https://gin-vue-admin.com/empower/index.html **
`,
global.Translate("core.server.welcomeTo"),
global.Translate("core.server.currentVersion"), address)
global.Translate("core.server.currentVersion"),
address)
global.GVA_LOG.Error(s.ListenAndServe().Error())
}