mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
32ba623541
4c81c6c2a live reload: add section about `--navigateToChanged` 271014257 Update netify hugo version to 0.83.1 14199cff1 Add pull_request event 0c33b05de Hosting on GitHub: Little wording fixes and update Ubuntu runner in example workflow to 20.04 (#1457) e47b6c33a Hugo Modules plural typo (#1266) 0f2bbacdd Add node_modules to .gitignore 1d645d79f Overhaul scratch.md (#1451) 572766889 Add link to golang regex syntax, change modified date 21b0c7459 Add info about contentType config de7d96fa2 Document Go template's multiline support 0c8f2dcb1 Avoid scratch usage 696fa92e1 Rename scratch var 44193f267 Update usage instructions 4230f8fa5 Rename and refactor shortcode e9953751e Strip leading whitespaces d61a58010 Add `insertpages` shortcode 04d30677d Mention WebP under 'Target Format' (#1431) 946784508 Update lookup-order.md (#1443) a7b587988 Update index.md 27907f7ea netlify: Hugo 0.83.1 044d37e57 Merge branch 'tempv0.83.1' b81aedb03 Fix page `.Kind` fcf7775ad releaser: Add release notes to /docs for release of 0.83.1 9b39c77c8 fix typo in 0.83 release notes 1c38993ce Update index.md 45b8aefa6 Update index.md 43902dfaa Update index.md 3d959c7ae Merge branch 'tempv0.83.0' 6c22dc327 Fix URL 497ea3224 Use Hugo version badge shortcode a182d10dd releaser: Add release notes to /docs for release of 0.83.0 287fd9ac0 docs: Fix shortcode e789c879a docs: Regenerate docs helper 1666c7f31 docs: Regenerate CLI docs 117de1d12 Merge commit 'c239c643fee10bfa217cb108755b798f8f5f3b10' a6bf3f7d9 docs: Regen docs helper git-subtree-dir: docs git-subtree-split: 4c81c6c2ace6c23d0d5d24ee37e6a2f30acba01e
82 lines
4.2 KiB
Markdown
82 lines
4.2 KiB
Markdown
---
|
|
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
|
|
|