1 Star 0 Fork 1.1K

ledaishu / BookStack

forked from 进击的皇虫 / BookStack 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 751 Bytes
一键复制 编辑 原始数据 按行查看 历史
TruthHun 提交于 2019-09-23 20:30 . 增加虚拟根目录
package main
import (
"fmt"
"os"
"github.com/TruthHun/BookStack/utils"
"github.com/TruthHun/BookStack/commands"
"github.com/TruthHun/BookStack/commands/daemon"
_ "github.com/TruthHun/BookStack/routers"
_ "github.com/go-sql-driver/mysql"
"github.com/kardianos/service"
)
func main() {
if len(os.Args) >= 3 && os.Args[1] == "service" {
if os.Args[2] == "install" {
daemon.Install()
} else if os.Args[2] == "remove" {
daemon.Uninstall()
} else if os.Args[2] == "restart" {
daemon.Restart()
}
}
commands.RegisterCommand()
d := daemon.NewDaemon()
s, err := service.New(d, d.Config())
if err != nil {
fmt.Println("Create service error => ", err)
os.Exit(1)
}
utils.PrintInfo()
utils.InitVirtualRoot()
s.Run()
}
Go
1
https://gitee.com/ledaishu/BookStack.git
git@gitee.com:ledaishu/BookStack.git
ledaishu
BookStack
BookStack
master

搜索帮助