1 Star 1 Fork 0

samoye/VerifyCodeServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
王鲁豫 提交于 2021-02-22 14:39 . finish 0.1 version
package main
import (
_ "GFAdmin/boot"
"GFAdmin/boot/config"
"GFAdmin/global"
_ "GFAdmin/router"
"GFAdmin/tool"
"context"
"fmt"
"github.com/gogf/gf/frame/g"
"os"
"os/signal"
"time"
)
func main(){
//启动服务
s := g.Server()
s.SetServerRoot(".")
s.SetRewrite("/favicon.ico","./static/favicon.ico")
s.SetPort(config.ApplicationConfig.Port)
fmt.Println(config.ApplicationConfig.Port)
//https判定
if config.SslConfig.Enable{
s.EnableHTTPS(config.SslConfig.KeyStr,config.SslConfig.Pem)
}
//欢迎使用
fmt.Println(tool.Green("Server run at:"))
fmt.Printf("- Local: http://localhost:%s/ \r\n", config.ApplicationConfig.Port)
fmt.Printf("- Network: http://%s:%s/ \r\n", tool.GetLocalHost(), config.ApplicationConfig.Port)
s.Run()
// 等待中断信号以优雅地关闭服务器(设置 5 秒的超时时间)
quit := make(chan os.Signal)
signal.Notify(quit, os.Interrupt)
<-quit
fmt.Printf("%s Shutdown Server ... \r\n", time.Now().Format("2006-01-02 15:04:05"))
_, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
if err := s.Shutdown(); err != nil {
global.Logger.Fatal("Server Shutdown:", err)
}
global.Logger.Println("Server exiting")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yizhisamoye/verify-code-server.git
[email protected]:yizhisamoye/verify-code-server.git
yizhisamoye
verify-code-server
VerifyCodeServer
master

搜索帮助