You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
package core
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/initialize"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/system"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type server interface {
|
|
ListenAndServe() error
|
|
}
|
|
|
|
func RunWindowsServer() {
|
|
if global.GVA_CONFIG.System.UseMultipoint {
|
|
// 初始化redis服务
|
|
initialize.Redis()
|
|
}
|
|
|
|
// 从db加载jwt数据
|
|
if global.GVA_DB != nil {
|
|
system.LoadAll()
|
|
}
|
|
|
|
Router := initialize.Routers()
|
|
|
|
Router.Static("/form-generator", "./resource/page")
|
|
|
|
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(`
|
|
欢迎使用 github.com/flipped-aurora/gin-vue-admin/server
|
|
当前版本:V2.4.5 beta
|
|
加群方式:微信号:shouzi_1994 QQ群:622360840
|
|
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html
|
|
默认前端文件运行地址:http://127.0.0.1:8080
|
|
如果项目让您获得了收益,希望您能请团队喝杯可乐:https://www.github.com/flipped-aurora/gin-vue-admin/server.com/docs/coffee
|
|
`, address)
|
|
global.GVA_LOG.Error(s.ListenAndServe().Error())
|
|
}
|