mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
e556848805
9abd3043a Add docs for shimming JS libraries 6a1c8dcd7 Update sitemap-template.md (#1245) 37c397332 Update frontends.md a0f86f6df Update configuration.md bb00cb2c1 Update page-bundles.md 773212de6 Restructure and simplify fcba7dddf Some minor clarifications of weight sorting 759b967fc Update configuration-markup.md 56708f0b7 module import path remove slash at end 59f4f4acd Doc: Fix typo in hugo command faacf2e97 Clarify pagination documentation (#1208) d8eb60887 netlify: Bump to 0.75.1 8cedf6231 Merge branch 'temp751' 188e2bf56 releaser: Add release notes to /docs for release of 0.75.1 c96d4b7a3 Update index.md 1a9d192f7 Update index.md 32731b916 Update index.md a5bfa0c9a Restore the ... home page b6850bf96 Release 0.75.0 d6e5e624f releaser: Add release notes to /docs for release of 0.75.0 8cd6b4f47 typo: already -> already 2cb2b22bb Merge commit '534ae9c57a902aea9ed6e62390dec11fa74b7122' e3525de23 docs: Regen docs helper fd746dd83 docs: Regenerate CLI docs e20127980 Add "hugo mod npm pack" 8e82c7ce1 markup/highlight: Add support to linkable line anchors on Chroma 21e94911b markup/asciidocext: Fix AsciiDoc TOC with code 50b8dace5 modules: Add noVendor to module config d05b541fe modules: Make ignoreVendor a glob pattern c946082e7 docs: Update replaceRE func 149054341 docs: Update replace func d917567df docs: Update merge function f1e093c92 docs: Regen CLI docs c7bac967d docs: Regen docs helper 7a38f7a45 Merge commit '7d7771b673e5949f554515a2c236b23192c765c8' 1a5a7263a markup/asciidoc: Add support for .TableOfContents git-subtree-dir: docs git-subtree-split: 9abd3043a9214b390e8cc148f4588bf630620851
84 lines
4.3 KiB
Markdown
84 lines
4.3 KiB
Markdown
---
|
|
date: 2020-09-13
|
|
title: "hugo"
|
|
slug: hugo
|
|
url: /commands/hugo/
|
|
---
|
|
## hugo
|
|
|
|
hugo builds your site
|
|
|
|
### Synopsis
|
|
|
|
hugo is the main command, used to build your Hugo site.
|
|
|
|
Hugo is a Fast and Flexible Static Site Generator
|
|
built with love by spf13 and friends in Go.
|
|
|
|
Complete documentation is available at http://gohugo.io/.
|
|
|
|
```
|
|
hugo [flags]
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
-b, --baseURL string hostname (and path) to the root, e.g. http://spf13.com/
|
|
-D, --buildDrafts include content marked as draft
|
|
-E, --buildExpired include expired content
|
|
-F, --buildFuture include content with publishdate in the future
|
|
--cacheDir string filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
|
|
--cleanDestinationDir remove files from destination not found in static directories
|
|
--config string config file (default is path/config.yaml|json|toml)
|
|
--configDir string config dir (default "config")
|
|
-c, --contentDir string filesystem path to content directory
|
|
--debug debug output
|
|
-d, --destination string filesystem path to write files to
|
|
--disableKinds strings disable different kind of pages (home, RSS etc.)
|
|
--enableGitInfo add Git revision, date and author info to the pages
|
|
-e, --environment string build environment
|
|
--forceSyncStatic copy all files when static is changed.
|
|
--gc enable to run some cleanup tasks (remove unused cache files) after the build
|
|
-h, --help help for hugo
|
|
--i18n-warnings print missing translations
|
|
--ignoreCache ignores the cache directory
|
|
--ignoreVendor ignores any _vendor directory
|
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
|
-l, --layoutDir string filesystem path to layout directory
|
|
--log enable Logging
|
|
--logFile string log File path (if set, logging enabled automatically)
|
|
--minify minify any supported output format (HTML, XML etc.)
|
|
--noChmod don't sync permission mode of files
|
|
--noTimes don't sync modification time of files
|
|
--path-warnings print warnings on duplicate target paths etc.
|
|
--print-mem print memory usage to screen at intervals
|
|
--quiet build in quiet mode
|
|
--renderToMemory render to memory (only useful for benchmark testing)
|
|
-s, --source string filesystem path to read files relative from
|
|
--templateMetrics display metrics about template executions
|
|
--templateMetricsHints calculate some improvement hints when combined with --templateMetrics
|
|
-t, --theme strings themes to use (located in /themes/THEMENAME/)
|
|
--themesDir string filesystem path to themes directory
|
|
--trace file write trace to file (not useful in general)
|
|
-v, --verbose verbose output
|
|
--verboseLog verbose logging
|
|
-w, --watch watch filesystem for changes and recreate as needed
|
|
```
|
|
|
|
### SEE ALSO
|
|
|
|
* [hugo check](/commands/hugo_check/) - Contains some verification checks
|
|
* [hugo config](/commands/hugo_config/) - Print the site configuration
|
|
* [hugo convert](/commands/hugo_convert/) - Convert your content to different formats
|
|
* [hugo deploy](/commands/hugo_deploy/) - Deploy your site to a Cloud provider.
|
|
* [hugo env](/commands/hugo_env/) - Print Hugo version and environment info
|
|
* [hugo gen](/commands/hugo_gen/) - A collection of several useful generators.
|
|
* [hugo import](/commands/hugo_import/) - Import your site from others.
|
|
* [hugo list](/commands/hugo_list/) - Listing out various types of content
|
|
* [hugo mod](/commands/hugo_mod/) - Various Hugo Modules helpers.
|
|
* [hugo new](/commands/hugo_new/) - Create new content for your site
|
|
* [hugo server](/commands/hugo_server/) - A high performance webserver
|
|
* [hugo version](/commands/hugo_version/) - Print the version number of Hugo
|
|
|
|
###### Auto generated by spf13/cobra on 13-Sep-2020
|