代码拉取完成,页面将自动刷新
同步操作将从 hufengjiu/gowebsocket 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* Created by GoLand.
* User: link1st
* Date: 2019-07-25
* Time: 09:59
*/
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/spf13/viper"
"gowebsocket/lib/redislib"
"gowebsocket/routers"
"gowebsocket/servers/grpcserver"
"gowebsocket/servers/task"
"gowebsocket/servers/websocket"
"io"
"net/http"
"os"
"os/exec"
"time"
)
func main() {
initConfig()
initFile()
initRedis()
router := gin.Default()
// 初始化路由
routers.Init(router)
routers.WebsocketInit()
// 定时任务
task.Init()
// 服务注册
task.ServerInit()
go websocket.StartWebSocket()
// grpc
go grpcserver.Init()
go open()
httpPort := viper.GetString("app.httpPort")
http.ListenAndServe(":"+httpPort, router)
}
// 初始化日志
func initFile() {
// Disable Console Color, you don't need console color when writing the logs to file.
gin.DisableConsoleColor()
// Logging to a file.
logFile := viper.GetString("app.logFile")
f, _ := os.Create(logFile)
gin.DefaultWriter = io.MultiWriter(f)
}
func initConfig() {
viper.SetConfigName("config/app")
viper.AddConfigPath(".") // 添加搜索路径
err := viper.ReadInConfig()
if err != nil {
panic(fmt.Errorf("Fatal error config file: %s \n", err))
}
fmt.Println("config app:", viper.Get("app"))
fmt.Println("config redis:", viper.Get("redis"))
}
func initRedis() {
redislib.ExampleNewClient()
}
func open() {
time.Sleep(1000 * time.Millisecond)
httpUrl := viper.GetString("app.httpUrl")
httpUrl = "http://" + httpUrl + "/home/index"
fmt.Println("访问页面体验:", httpUrl)
cmd := exec.Command("open", httpUrl)
cmd.Output()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。