digital-garden/_inbox/Quartz.md

17 lines
672 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
aliases:
tags:
- зрелость/🌱
date:
- - 2024-09-01
zero-link:
parents:
linked:
link: https://quartz.jzhao.xyz/
---
Утилита, которая позволяет генерировать статические сайты, аналогично Hugo.
Собрать статический сайт с использованием docker image. Файлы статей должны лежать в папке `content`, а результат (сайт) будет лежать в папке `public`.
```shell
docker run -v ./content:/usr/src/app/content -v ./public:/usr/src/app/public --name quartz --rm docker.struchkov.dev/quartz:latest build
```