From ec6c2d76336bad23cf1cd96004d9339a0c527561 Mon Sep 17 00:00:00 2001 From: Nathan Price Date: Sun, 19 Jan 2025 17:56:55 -0500 Subject: [PATCH] vault backup: 2025-01-19 17:56:55 --- Docker Images/quartz.md | 11 +++++++++-- Docker Images/quartz/Developing with Quartz.md | 5 +++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Docker Images/quartz.md b/Docker Images/quartz.md index edec654..581120c 100644 --- a/Docker Images/quartz.md +++ b/Docker Images/quartz.md @@ -58,10 +58,16 @@ docker stop quartz-wiki On first run, the container will download the necessary dependencies, build the site, and download the content repository. -After that, you can configure whatever you would like in `/srv/quartz/src` using the stock options found in the quartz [documentation](https://quartz.jzhao.xyz/configuration) Bare minimum should be `baseUrl` and `pageTitle`. +After that, you can configure whatever you would like in `/srv/quartz/src` using the stock options found in the quartz [documentation](https://quartz.jzhao.xyz/configuration) +Bare minimum should be `baseUrl` and `pageTitle`. 🥳 Done! 🎉 + +> [!NOTE] Cloudflare +> I've found that the cron schedule + + ## Manually Building the Site If you don't use the cron job, and don't feel like restarting the container, you can build the site manually. @@ -110,4 +116,5 @@ environment: | `BUILD_SCHEDULE` | Cron expression for scheduling site builds | `"*/10 * * * *"` every 10 min | | `CONTENT_REPO` | URL of the content repository | `https://code.modernleft.org/gravityfargo/empty.git` | -> [!NOTE] > `CONTENT_REPO` Must use https, not git. +> [!NOTE] > +> `CONTENT_REPO` Must use https, not git. diff --git a/Docker Images/quartz/Developing with Quartz.md b/Docker Images/quartz/Developing with Quartz.md index ae53c5d..634a2ff 100644 --- a/Docker Images/quartz/Developing with Quartz.md +++ b/Docker Images/quartz/Developing with Quartz.md @@ -26,8 +26,9 @@ cd ~/Repositories/quartz-docker make run ``` -If 200+ files are claiming to be modified, you may need to disable filemode checking: +If 200+ files are claiming to be modified, you may need to disable file mode checking: ```bash -git config --global core.fileMode false +# use --global at your own risk +git config core.fileMode false ```