1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 11:22:09 +02:00
tldr/pages/common/zola.md
Lucas Gabriel Schneider 8211b80c17
multiple pages: rephrase without adjectives (#3846)
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
2020-02-11 18:53:43 +01:00

665 B

zola

A static site generator in a single binary with everything built-in. More information: https://www.getzola.org/documentation/getting-started/cli-usage/.

  • Create the directory structure used by Zola at the given directory:

zola init {{my_site}}

  • Build the whole site in the public directory after deleting it:

zola build

  • Build the whole site into a different directory:

zola build --output-dir {{path/to/output_directory/}}

  • Build and serve the site using a local server (default is 127.0.0.1:1111):

zola serve

  • Build all pages just like the build command would, but without writing any of the results to disk:

zola check