vault backup: 2025-01-19 17:56:55

This commit is contained in:
Nathan Price 2025-01-19 17:56:55 -05:00
parent f2d17d633b
commit ec6c2d7633
Signed by: gravityfargo
SSH key fingerprint: SHA256:bjq+uA1U+9bFMd70q2wdNtwaYxGv84IBXalnYvZDKmg
2 changed files with 12 additions and 4 deletions

View file

@ -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. 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! 🎉 🥳 Done! 🎉
> [!NOTE] Cloudflare
> I've found that the cron schedule
## Manually Building the Site ## 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. 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 | | `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` | | `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.

View file

@ -29,5 +29,6 @@ make run
If 200+ files are claiming to be modified, you may need to disable file mode checking: If 200+ files are claiming to be modified, you may need to disable file mode checking:
```bash ```bash
git config --global core.fileMode false # use --global at your own risk
git config core.fileMode false
``` ```