hugo mod init
hugo mod init
将此项目初始化为Hugo模块。
概要
将此项目初始化为Hugo模块。 它将尝试猜测模块路径,但您可以通过将其作为参数传递来帮助,例如:
hugo mod init github.com/gohugoio/testshortcodes
请注意,Hugo模块支持多模块项目,因此您可以在GitHub的子文件夹中初始化Hugo模块,作为一个示例。
hugo mod init [标志] [参数]
选项
-b, --baseURL string 根的主机名(和路径),例如 https://spf13.com/
--cacheDir string 缓存目录的文件系统路径
-c, --contentDir string 内容目录的文件系统路径
-h, --help init 的帮助信息
-t, --theme strings 要使用的主题(位于 /themes/THEMENAME/)
从父命令继承的选项
--clock string 设置Hugo使用的时钟,例如 --clock 2021-11-06T22:30:00.00+09:00
--config string 配置文件(默认为hugo.yaml|json|toml)
--configDir string 配置目录(默认为 "config")
--debug 调试输出
-d, --destination string 写入文件的文件系统路径
-e, --environment string 构建环境
--ignoreVendorPaths string 忽略与给定Glob模式匹配的模块路径的任何 _vendor
--logLevel string 日志级别(debug|info|warn|error)
--quiet 静默模式下构建
-s, --source string 相对于的文件系统路径读取文件
--themesDir string 主题目录的文件系统路径
-v, --verbose 详细输出
另请参阅
- hugo mod - 各种Hugo模块助手。