1 Star 0 Fork 0

Shiro/Installer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
zhangguanzhang 提交于 2020-04-06 22:00 . 更新文档和增加接口
package main
import (
"Installer/router"
"Installer/service"
"flag"
log "github.com/sirupsen/logrus"
"os"
"strconv"
)
// @title Installer API
// @version 1.0
// @description some api of this
// @termsOfService http://swagger.io/terms/
// @contact.name API Support
// @contact.url http://www.swagger.io/support
// @contact.email support@swagger.io
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
// @BasePath /api/v1
func main() {
port := flag.Int("port", 8080, "http server port")
dbInfo := flag.String("db", "127.0.0.1:3306@pxe", "database host with port, like ip:host@database")
con := flag.String("user", "root:zhangguanzhang", "user:pass connect to db")
ks := flag.String("ks", "templates/ks.tmpl", "kickstart template file")
flag.Parse()
_, err := os.Stat(*ks)
if err != nil && os.IsNotExist(err) {
log.Fatalf("kickstart template file %s %v", *ks, err)
}
if err := service.DBInit(*con, *dbInfo); err != nil {
log.Fatal(err)
}
defer service.DBClose()
Router := router.InitRouter(*ks)
if err := Router.Run(":" + strconv.Itoa(*port)); err != nil {
log.Fatal(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/shunzi115/Installer.git
git@gitee.com:shunzi115/Installer.git
shunzi115
Installer
Installer
master

搜索帮助