Compare commits

...

2 commits

Author SHA1 Message Date
085e35d529
vault backup: 2025-01-19 18:01:52 2025-01-19 18:01:52 -05:00
ec6c2d7633
vault backup: 2025-01-19 17:56:55 2025-01-19 17:56:55 -05:00
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 will eventually start having fatal git errors. Disabling Cloudflare fixed this. I am moving away from their services after their many controversies. Do with that what you will.
## 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

@ -26,8 +26,9 @@ cd ~/Repositories/quartz-docker
make run 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 ```bash
git config --global core.fileMode false # use --global at your own risk
git config core.fileMode false
``` ```