snippetbashTip
zola — A static site generator in a single binary with everything built-in. More information: <https://www.
Viewed 0 times
commandgeneratorstaticclibinaryzolasitesingle
Problem
How to use the
zola command: A static site generator in a single binary with everything built-in. More information: <https://www.getzola.org/documentation/getting-started/cli-usage/>.Solution
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 buildBuild 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 serveBuild all pages just like the build command would, but without writing any of the results to disk:
zola checkCode Snippets
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 buildBuild 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 serveBuild all pages just like the build command would, but without writing any of the results to disk
zola checkContext
tldr-pages: common/zola
Revisions (0)
No revisions yet.