代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/Yearning 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// Copyright 2019 HenryYee.
//
// Licensed under the AGPL, Version 3.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.gnu.org/licenses/agpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"Yearning-go/src/model"
"Yearning-go/src/pool"
"Yearning-go/src/service"
"flag"
"fmt"
"log"
"os"
)
var (
h bool
s bool
p string
m bool
b string
x bool
c string
k bool
)
func usage() {
_, err := fmt.Fprintf(os.Stderr, `version: Yearning/2.1.9 author: HenryYee
Usage: Yearning [-m migrate] [-p port] [-s start] [-b web-bind] [-h help] [-c config file]
Options:
-s 启动Yearning
-m 数据初始化(第一次安装时执行)
-p 端口
-b 钉钉/邮件推送时显示的平台地址
-x 表结构修复,升级时可以操作。如出现错误可直接忽略。
-h 帮助
-c 配置文件路径
-k 用户权限变更为权限组(2.1.7以下升级至2.1.7及以上使用)
`)
if err != nil {
panic(err.Error())
}
}
func init() {
flag.BoolVar(&s, "s", false, "启动Yearning")
flag.BoolVar(&m, "m", false, "数据初始化(第一次安装时执行)")
flag.StringVar(&p, "p", "8000", "Yearning端口")
flag.BoolVar(&h, "h", false, "帮助")
flag.BoolVar(&x, "x", false, "表结构修复")
flag.StringVar(&b, "b", "127.0.0.1", "钉钉/邮件推送时显示的平台地址")
flag.StringVar(&c, "c", "conf.toml", "配置文件路径")
flag.BoolVar(&k, "k", false, "用户权限变更为权限组(2.1.7以下升级至2.1.7及以上使用)")
flag.Usage = usage
log.SetPrefix("Yearning_error: ")
log.SetFlags(log.Ldate | log.Lmicroseconds | log.Llongfile)
}
func main() {
defer pool.P.Close()
flag.Parse()
if h {
flag.Usage()
}
if m {
model.DbInit(c)
service.Migrate()
}
if k {
model.DbInit(c)
service.MargeRuleGroup()
}
if s {
model.DbInit(c)
err := pool.InitGrpcpool()
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
service.UpdateSoft()
service.StartYearning(p, b)
}
if x {
model.DbInit(c)
service.DelCol()
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。