mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 15:35:42 -05:00
* PUSH NOTE : Zola.md * PUSH NOTE : Meta.md * PUSH NOTE : Tools.md * PUSH NOTE : Inspirations.md * PUSH NOTE : index.md * PUSH NOTE : Digital Garden.md * PUSH NOTE : Words I Like.md * PUSH NOTE : About.md * DELETE FILE : docs/features/table of contents.md
39 lines
632 B
Markdown
39 lines
632 B
Markdown
---
|
|
title: Zola
|
|
description: "Zola is a fast static site generator in a single binary with everything built-in."
|
|
updated: 2023-11-03
|
|
compartir: true
|
|
---
|
|
|
|
[Zola](https:) is a fast [[./Static Site Generators|static site generator]] contained in a single binary with everything built-in. It is by far my preferred way to build static websites.
|
|
|
|
## Useful Commands
|
|
|
|
```bash
|
|
zola build --base-url $DEPLOY_URL
|
|
```
|
|
|
|
```bash
|
|
zola build --output-dir $DOCUMENT_ROOT
|
|
```
|
|
|
|
```bash
|
|
zola --config config.staging.toml build
|
|
```
|
|
|
|
```bash
|
|
zola --root /path/to/project build
|
|
```
|
|
|
|
```bash
|
|
zola init
|
|
```
|
|
|
|
```bash
|
|
zola serve
|
|
```
|
|
|
|
```bash
|
|
zola check
|
|
```
|