11 Star 46 Fork 13

HanJinyan/Meink

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Meink.go 1011 Bytes
一键复制 编辑 原始数据 按行查看 历史
HanJinyan 提交于 2020-11-08 00:19 . update
package main
import (
"Meink/app/build"
"Meink/app/parse"
"Meink/app/server"
"Meink/app/tool"
"os"
"github.com/urfave/cli/v2"
)
func main() {
appInfo := parse.SiteConfig().App
app := &cli.App{
Name: appInfo.Name,
Version: appInfo.Version,
Authors: []*cli.Author{
{Name: appInfo.Author, Email: appInfo.Email},
},
Commands: []*cli.Command{
{
Name: "run",
Usage: "运行博客",
Action: func(c *cli.Context) error {
parse.SiteConfig()
build.Build()
tool.Copy()
tool.DynamicMonitoringFile()
server.Server()
return nil
},
},
{
Name: "init",
Usage: "清空Public文件夹",
Action: func(c *cli.Context) error {
tool.CleanPublic()
return nil
},
},
{
Name: "new",
Usage: "创建一篇新文章 --> 创建文章用 new article_name 创建页面用 new page_name page ",
Action: func(c *cli.Context) error {
tool.NewArticle(c)
return nil
},
},
},
}
app.Run(os.Args)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/HanJinyan/Meink.git
git@gitee.com:HanJinyan/Meink.git
HanJinyan
Meink
Meink
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385